* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.header-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-offset {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin-right: 1rem;
}

.nav-offset a {
    color: #34495e;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-offset a:hover {
    color: #3498db;
}

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 0 0 45%;
    padding: 5rem 0 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 700;
}

.hero-content-offset p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-left: -3rem;
    margin-top: 3rem;
    margin-bottom: -3rem;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
}

.cta-primary {
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.intro-irregular {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
}

.intro-block {
    flex: 0 0 55%;
    padding-right: 3rem;
}

.intro-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    line-height: 1.3;
}

.intro-block p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.intro-visual {
    flex: 1;
    height: 400px;
    position: relative;
    transform: translateY(-2rem);
}

.intro-visual img {
    width: 100%;
    height: 100%;
}

.services-staggered {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-weight: 600;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 0 0 calc(33.333% - 1.4rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card.offset-top {
    margin-top: 2rem;
}

.service-card.offset-bottom {
    margin-top: -1rem;
}

.service-card.offset-top-large {
    margin-top: 3rem;
}

.service-card.offset-center {
    margin-top: 0.5rem;
}

.service-card.offset-bottom-small {
    margin-top: -0.5rem;
}

.service-card.offset-top-small {
    margin-top: 1rem;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3498db;
}

.trust-diagonal {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.diagonal-content {
    transform: skewY(2deg);
}

.diagonal-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    text-align: center;
}

.stats-irregular {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item.offset {
    transform: translateY(-1.5rem);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: #ecf0f1;
    font-size: 1rem;
}

.testimonials-overlap {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.testimonials-overlap h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial-card.float-left {
    margin-left: 0;
    margin-right: auto;
    max-width: 70%;
}

.testimonial-card.float-right {
    margin-left: auto;
    margin-right: 0;
    max-width: 70%;
}

.testimonial-card.float-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-style: italic;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.form-section-diagonal {
    display: flex;
    padding: 5rem 5%;
    gap: 3rem;
    background-color: #f8f9fa;
}

.form-container-offset {
    flex: 0 0 55%;
}

.form-container-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.form-intro {
    color: #5a6c7d;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.consultation-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-selection {
    margin-bottom: 2rem;
}

.service-selection label {
    display: block;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option:hover {
    background-color: #e8ecef;
}

.service-option input[type="radio"] {
    margin-right: 0.8rem;
}

.service-option span {
    color: #34495e;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-field {
    flex: 1;
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #3498db;
}

.checkbox-field label {
    display: flex;
    align-items: flex-start;
    font-weight: 400;
    gap: 0.5rem;
}

.checkbox-field input[type="checkbox"] {
    margin-top: 0.3rem;
    width: auto;
}

.checkbox-field a {
    color: #3498db;
    text-decoration: none;
}

.checkbox-field a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.form-background-image {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.form-background-image img {
    width: 100%;
    height: 100%;
}

.approach-offset {
    padding: 5rem 5% 5rem 10%;
    background-color: #ffffff;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a252f;
}

.steps-irregular {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-item.offset-right {
    padding-left: 5rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    opacity: 0.3;
    flex-shrink: 0;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.step-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.cta-asymmetric {
    padding: 5rem 5%;
    background: linear-gradient(120deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
}

.cta-content-diagonal {
    max-width: 700px;
    margin-left: 10%;
    text-align: left;
}

.cta-content-diagonal h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-content-diagonal p {
    font-size: 1.1rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.cta-secondary {
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #2c3e50;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-secondary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.footer-irregular {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col.offset-footer {
    margin-top: 2rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.7rem 1.5rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cookie:hover {
    background-color: #229954;
}

.btn-cookie.secondary {
    background-color: transparent;
    border: 1px solid #ffffff;
}

.btn-cookie.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero-diagonal {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    min-height: 300px;
    display: flex;
    align-items: center;
}

.hero-text-offset {
    max-width: 800px;
    margin-left: 5%;
}

.hero-text-offset h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-text-offset p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

.about-story-irregular {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.story-block-offset {
    flex: 0 0 50%;
}

.story-block-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.story-block-offset p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image-overlap {
    flex: 1;
    height: 450px;
    position: relative;
    transform: translateY(2rem);
}

.story-image-overlap img {
    width: 100%;
    height: 100%;
}

.values-asymmetric {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.values-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a252f;
}

.values-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 0 0 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-item.position-1 {
    margin-top: 1rem;
}

.value-item.position-2 {
    margin-top: -1rem;
}

.value-item.position-3 {
    margin-top: 0.5rem;
}

.value-item.position-4 {
    margin-top: -0.5rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.team-staggered {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.team-staggered h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a252f;
}

.team-layout-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 0 0 calc(50% - 1rem);
}

.team-member.offset-top {
    margin-top: 2rem;
}

.team-member.offset-bottom {
    margin-top: -1rem;
}

.team-member.offset-center {
    margin-top: 0.5rem;
}

.team-member.offset-top-small {
    margin-top: 1rem;
}

.member-image {
    width: 100%;
    height: 350px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.member-role {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #5a6c7d;
    line-height: 1.7;
}

.mission-diagonal {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
}

.mission-content-offset {
    max-width: 800px;
    margin-left: 10%;
}

.mission-content-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.mission-content-offset p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.services-detailed {
    padding: 3rem 5%;
}

.service-detail-asymmetric {
    display: flex;
    gap: 4rem;
    padding: 4rem 0;
    border-bottom: 1px solid #e8e8e8;
    align-items: center;
}

.service-detail-asymmetric.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 0 0 55%;
}

.service-content.offset-left {
    padding-right: 2rem;
}

.service-content.offset-right {
    padding-left: 2rem;
}

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: #2c3e50;
}

.service-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-content ul {
    margin: 1rem 0 2rem 1.5rem;
}

.service-content li {
    color: #5a6c7d;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.pricing-detail {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
}

.price-description {
    font-size: 0.95rem;
    color: #5a6c7d;
}

.btn-service {
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.service-image {
    flex: 1;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.service-image.offset-left {
    transform: translateX(-2rem);
}

.service-image.offset-right {
    transform: translateX(2rem);
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-guarantee-diagonal {
    padding: 4rem 5%;
    background-color: #f8f9fa;
    margin-top: 3rem;
}

.guarantee-content-offset {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-content-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.guarantee-content-offset p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-layout-asymmetric {
    display: flex;
    padding: 4rem 5%;
    gap: 4rem;
    min-height: 600px;
}

.contact-info-offset {
    flex: 0 0 45%;
}

.contact-info-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.contact-detail-block {
    margin-bottom: 2.5rem;
}

.contact-detail-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-detail-block p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.contact-visual-offset {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transform: translateY(2rem);
}

.contact-visual-offset img {
    width: 100%;
    height: 100%;
}

.visit-info-diagonal {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.visit-content-offset {
    max-width: 800px;
    margin-left: 10%;
}

.visit-content-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.visit-content-offset p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.map-placeholder-asymmetric {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.map-info {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.map-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.map-info p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.alternative-contact-offset {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.alternative-contact-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a252f;
}

.alternative-methods {
    display: flex;
    gap: 2rem;
}

.method-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.method-card.offset-position-1 {
    margin-top: 1rem;
}

.method-card.offset-position-2 {
    margin-top: -1rem;
}

.method-card.offset-position-3 {
    margin-top: 0.5rem;
}

.method-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.method-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-hero-asymmetric {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content-centered {
    text-align: center;
    max-width: 700px;
}

.thanks-icon {
    font-size: 5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.thanks-content-centered h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.2rem;
    color: #e8f5e9;
}

.thanks-info-offset {
    padding: 5rem 5%;
}

.info-block-diagonal {
    max-width: 900px;
    margin: 0 auto;
}

.info-block-diagonal h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a252f;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step-thanks {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number-thanks {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    flex-shrink: 0;
}

.step-content-thanks h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.step-content-thanks p {
    color: #5a6c7d;
    line-height: 1.7;
}

.selected-service-info {
    padding: 3rem 5%;
    background-color: #f0f8ff;
    border-left: 4px solid #3498db;
}

.service-selected-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-selected-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.selected-service-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.service-specialist {
    color: #5a6c7d;
    font-style: italic;
}

.thanks-additional-diagonal {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.additional-info-offset {
    max-width: 800px;
    margin-left: 10%;
}

.additional-info-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.additional-info-offset p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.thanks-resources {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.thanks-resources h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a252f;
}

.resource-cards-asymmetric {
    display: flex;
    gap: 2rem;
}

.resource-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.resource-card.offset-card-1 {
    margin-top: 1rem;
}

.resource-card.offset-card-2 {
    margin-top: -1rem;
}

.resource-card.offset-card-3 {
    margin-top: 0.5rem;
}

.resource-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.resource-card p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.link-resource {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-resource:hover {
    color: #2980b9;
    text-decoration: underline;
}

.legal-page-hero {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-hero-content {
    text-align: center;
    max-width: 800px;
}

.legal-hero-content h1 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.legal-hero-content p {
    font-size: 1.1rem;
    color: #ecf0f1;
}

.legal-content {
    padding: 4rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-text-container h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: #2c3e50;
}

.legal-text-container h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #34495e;
}

.legal-text-container p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-text-container ul {
    margin: 1rem 0 2rem 2rem;
}

.legal-text-container li {
    color: #5a6c7d;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-text-container a {
    color: #3498db;
    text-decoration: none;
}

.legal-text-container a:hover {
    text-decoration: underline;
}

.legal-text-container strong {
    color: #2c3e50;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e8e8e8;
}

.cookies-table th {
    background-color: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}

.cookies-table td {
    color: #5a6c7d;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        flex: 1;
        padding: 3rem 5%;
    }

    .hero-image-overlap {
        margin: 0;
        height: 400px;
    }

    .services-grid-asymmetric {
        flex-direction: column;
    }

    .service-card {
        flex: 1;
        margin-top: 0;
    }

    .form-section-diagonal {
        flex-direction: column;
    }

    .service-detail-asymmetric,
    .service-detail-asymmetric.reverse {
        flex-direction: column;
    }

    .service-image {
        height: 300px;
        transform: none;
    }
}

@media (max-width: 768px) {
    .header-asymmetric {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-offset {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content-offset h1 {
        font-size: 2.2rem;
    }

    .intro-irregular,
    .about-story-irregular,
    .contact-layout-asymmetric {
        flex-direction: column;
    }

    .stats-irregular {
        flex-direction: column;
        gap: 2rem;
    }

    .testimonial-card.float-left,
    .testimonial-card.float-right,
    .testimonial-card.float-center {
        max-width: 100%;
        margin: 0;
    }

    .values-grid-offset,
    .team-layout-irregular {
        flex-direction: column;
    }

    .value-item,
    .team-member {
        flex: 1;
        margin-top: 0;
    }

    .alternative-methods,
    .resource-cards-asymmetric {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }
}