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

:root {
    --primary-color: #2D6A4F;
    --secondary-color: #40916C;
    --accent-color: #95D5B2;
    --dark-color: #1B4332;
    --text-color: #212529;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --gray-light: #E9ECEF;
    --gray-medium: #6C757D;
    --error-color: #D62828;
    --success-color: #2D6A4F;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: var(--accent-color);
    color: var(--dark-color);
}

.btn-cookie.reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-cookie:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-asymmetric {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-offset {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    padding: 5% 7%;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 3rem;
    margin-left: -2%;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-medium);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.3);
}

.hero-visual-right {
    flex: 0.9;
    position: relative;
    margin-top: 5%;
}

.hero-visual-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 20px 20px 0 var(--accent-color);
    transform: rotate(-2deg);
}

.intro-asymmetric {
    padding: 8% 10% 8% 5%;
    display: flex;
    gap: 5rem;
    align-items: center;
    background: var(--white);
}

.intro-block-offset {
    flex: 1.2;
    padding-left: 5%;
}

.intro-block-offset h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.intro-block-offset p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    transform: translateX(10%);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-medium);
    margin-top: 0.5rem;
}

.services-creative {
    padding: 8% 5%;
    background: var(--light-bg);
}

.section-header-offset {
    max-width: 600px;
    margin-left: 10%;
    margin-bottom: 4rem;
}

.section-header-offset h2 {
    color: var(--dark-color);
}

.section-header-offset p {
    font-size: 1.15rem;
    color: var(--gray-medium);
}

.services-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

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

.service-card.offset-1 {
    margin-left: 2%;
}

.service-card.offset-2 {
    margin-left: 15%;
}

.service-card.offset-3 {
    margin-left: 7%;
}

.service-card.offset-4 {
    margin-left: 20%;
}

.service-card.offset-5 {
    margin-left: 5%;
}

.service-card.offset-6 {
    margin-left: 12%;
}

.service-image {
    flex: 0.9;
}

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

.service-content {
    flex: 1.1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-color);
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

.btn-select-service.selected {
    background: var(--dark-color);
}

.cta-floating {
    padding: 6% 10%;
    background: var(--primary-color);
    margin: 5% 8%;
    border-radius: 16px;
    transform: rotate(-1deg);
}

.cta-content-diagonal {
    text-align: center;
    color: var(--white);
    transform: rotate(1deg);
}

.cta-content-diagonal h2 {
    margin-bottom: 1rem;
}

.cta-content-diagonal p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-cta-inline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-inline:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.process-offset {
    padding: 8% 10%;
    background: var(--white);
}

.process-offset h2 {
    margin-left: 5%;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

.process-blocks {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-item {
    padding: 2.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    position: relative;
}

.process-item.position-1 {
    margin-left: 5%;
}

.process-item.position-2 {
    margin-left: 18%;
}

.process-item.position-3 {
    margin-left: 10%;
}

.process-item.position-4 {
    margin-left: 23%;
}

.process-number {
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.process-item h3 {
    color: var(--dark-color);
    margin-top: 1rem;
}

.testimonials-creative {
    padding: 8% 5%;
    background: var(--light-bg);
}

.testimonials-creative h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

.testimonials-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card.t-offset-1 {
    margin-left: 8%;
    margin-right: 15%;
}

.testimonial-card.t-offset-2 {
    margin-left: 20%;
    margin-right: 5%;
}

.testimonial-card.t-offset-3 {
    margin-left: 12%;
    margin-right: 18%;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--dark-color);
}

.testimonial-author span {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

.form-section-asymmetric {
    padding: 8% 5%;
    display: flex;
    gap: 4rem;
    background: var(--white);
}

.form-container-offset {
    flex: 1.2;
    padding: 3rem;
    background: var(--light-bg);
    border-radius: 12px;
    margin-right: -5%;
    z-index: 10;
}

.form-container-offset h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.form-intro {
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.contact-form-creative {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 106, 79, 0.3);
}

.form-visual {
    flex: 1;
    position: relative;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: -15px 15px 0 var(--accent-color);
}

.footer-asymmetric {
    background: var(--dark-color);
    color: var(--white);
    padding: 5% 5% 2%;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-col p {
    color: var(--gray-light);
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: var(--gray-light);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

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

.footer-bottom p {
    color: var(--gray-light);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.5);
}

.page-hero-offset {
    margin-top: 80px;
    padding: 8% 10%;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    text-align: center;
}

.page-hero-content h1 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: var(--gray-medium);
}

.about-story {
    padding: 8% 10%;
    background: var(--white);
}

.story-content-asymmetric {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 12px;
    box-shadow: 15px 15px 0 var(--accent-color);
    transform: rotate(2deg);
}

.values-section {
    padding: 8% 5%;
    background: var(--light-bg);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

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

.value-card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.value-card.v-pos-1 {
    margin-left: 5%;
}

.value-card.v-pos-2 {
    margin-left: 15%;
}

.value-card.v-pos-3 {
    margin-left: 8%;
}

.value-card.v-pos-4 {
    margin-left: 18%;
}

.value-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-color);
    line-height: 1.7;
}

.team-section-creative {
    padding: 8% 5%;
    background: var(--white);
}

.team-section-creative h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

.team-layout-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.team-member.tm-offset-1 {
    margin-left: 8%;
}

.team-member.tm-offset-2 {
    margin-left: 18%;
}

.team-member.tm-offset-3 {
    margin-left: 12%;
}

.team-member.tm-offset-4 {
    margin-left: 20%;
}

.member-image {
    flex: 0 0 150px;
}

.member-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
}

.team-member h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-color);
    line-height: 1.7;
}

.approach-section {
    padding: 8% 10%;
    background: var(--light-bg);
}

.approach-content-offset {
    max-width: 900px;
    margin-left: 10%;
}

.approach-content-offset h2 {
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.approach-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
}

.cta-about-offset {
    padding: 8% 10%;
    text-align: center;
    background: var(--white);
}

.cta-about-offset h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.cta-about-offset p {
    font-size: 1.15rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 106, 79, 0.3);
}

.services-detailed {
    padding: 5% 8%;
    background: var(--white);
}

.service-detail-item {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.service-detail-item.sd-layout-1 {
    flex-direction: row;
}

.service-detail-item.sd-layout-2 {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-intro {
    font-size: 1.15rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-includes {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-includes li {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    line-height: 1.6;
}

.service-detail-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0;
}

.price-label {
    font-size: 0.95rem;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-image {
    flex: 0.9;
}

.service-detail-image img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-benefits-offset {
    padding: 8% 10%;
    background: var(--light-bg);
}

.service-benefits-offset h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

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

.benefit-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.benefit-item.b-offset-1 {
    margin-left: 5%;
}

.benefit-item.b-offset-2 {
    margin-left: 18%;
}

.benefit-item.b-offset-3 {
    margin-left: 10%;
}

.benefit-item.b-offset-4 {
    margin-left: 22%;
}

.benefit-item h3 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: var(--text-color);
    line-height: 1.6;
}

.cta-services-asymmetric {
    padding: 8% 5%;
    background: var(--primary-color);
    margin: 5% 8%;
    border-radius: 16px;
    transform: rotate(-1deg);
}

.cta-services-asymmetric .cta-content {
    text-align: center;
    color: var(--white);
    transform: rotate(1deg);
}

.cta-services-asymmetric h2 {
    margin-bottom: 1rem;
}

.cta-services-asymmetric p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-services-asymmetric .btn-cta-large {
    background: var(--white);
    color: var(--primary-color);
}

.cta-services-asymmetric .btn-cta-large:hover {
    background: var(--accent-color);
}

.contact-main-section {
    padding: 5% 10%;
    display: flex;
    gap: 5rem;
    align-items: center;
    background: var(--white);
}

.contact-info-offset {
    flex: 1;
}

.contact-info-offset h2 {
    color: var(--dark-color);
    margin-bottom: 2.5rem;
}

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

.contact-info-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.contact-info-block p {
    color: var(--text-color);
    line-height: 1.7;
}

.contact-info-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    padding: 1.5rem;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.contact-note p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

.contact-map-visual {
    flex: 1;
}

.contact-map-visual img {
    border-radius: 12px;
    box-shadow: 15px 15px 0 var(--accent-color);
}

.contact-why-section {
    padding: 8% 10%;
    background: var(--light-bg);
}

.contact-why-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

.why-contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
}

.why-item h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.why-item p {
    color: var(--text-color);
    line-height: 1.7;
}

.contact-faq-offset {
    padding: 8% 10%;
    background: var(--white);
}

.contact-faq-offset h2 {
    margin-bottom: 3rem;
    color: var(--dark-color);
    margin-left: 5%;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.7;
}

.cta-contact-asymmetric {
    padding: 8% 10%;
    text-align: center;
    background: var(--light-bg);
}

.cta-contact-asymmetric h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.cta-contact-asymmetric p {
    font-size: 1.15rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.thanks-page-hero {
    margin-top: 80px;
    padding: 8% 10%;
    background: var(--light-bg);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
}

.thanks-content h1 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.25rem;
    color: var(--gray-medium);
    margin-bottom: 2.5rem;
}

.service-confirmation {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-next-steps {
    margin: 4rem 0;
}

.thanks-next-steps h2 {
    color: var(--dark-color);
    margin-bottom: 2.5rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    flex: 1;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-item h3 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.step-item p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-thanks-primary {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-thanks-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-thanks-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-thanks-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.thanks-meanwhile {
    padding: 8% 10%;
    background: var(--white);
}

.thanks-meanwhile h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.meanwhile-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.meanwhile-item {
    flex: 1;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.meanwhile-item h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.meanwhile-item p {
    color: var(--text-color);
    line-height: 1.7;
}

.legal-page {
    margin-top: 80px;
    padding: 5% 10%;
    background: var(--white);
}

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

.legal-content h1 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.legal-update {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.legal-section h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legal-section p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-section strong {
    color: var(--dark-color);
}

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

.cookie-table thead {
    background: var(--light-bg);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--gray-light);
}

.cookie-table th {
    color: var(--dark-color);
    font-weight: 600;
}

.cookie-table td {
    color: var(--text-color);
}

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

    .hero-content-left {
        padding-right: 0;
        margin-left: 0;
        margin-bottom: 3rem;
    }

    .hero-visual-right {
        margin-top: 0;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 3rem;
    }

    .intro-block-offset {
        padding-left: 0;
    }

    .stat-item {
        transform: translateX(0);
    }

    .service-card {
        flex-direction: column;
    }

    .service-card.offset-1,
    .service-card.offset-2,
    .service-card.offset-3,
    .service-card.offset-4,
    .service-card.offset-5,
    .service-card.offset-6 {
        margin-left: 0;
    }

    .testimonial-card.t-offset-1,
    .testimonial-card.t-offset-2,
    .testimonial-card.t-offset-3 {
        margin-left: 0;
        margin-right: 0;
    }

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

    .form-container-offset {
        margin-right: 0;
    }

    .footer-main {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 1.5rem);
    }

    .story-content-asymmetric {
        flex-direction: column;
        gap: 3rem;
    }

    .team-member {
        flex-direction: column;
        text-align: center;
    }

    .team-member.tm-offset-1,
    .team-member.tm-offset-2,
    .team-member.tm-offset-3,
    .team-member.tm-offset-4 {
        margin-left: 0;
    }

    .service-detail-item {
        flex-direction: column;
        gap: 2rem;
    }

    .service-detail-item.sd-layout-2 {
        flex-direction: column;
    }

    .contact-main-section {
        flex-direction: column;
        gap: 3rem;
    }

    .steps-grid {
        flex-wrap: wrap;
    }

    .step-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .meanwhile-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

    .process-item.position-1,
    .process-item.position-2,
    .process-item.position-3,
    .process-item.position-4 {
        margin-left: 0;
    }

    .value-card.v-pos-1,
    .value-card.v-pos-2,
    .value-card.v-pos-3,
    .value-card.v-pos-4 {
        margin-left: 0;
    }

    .benefit-item.b-offset-1,
    .benefit-item.b-offset-2,
    .benefit-item.b-offset-3,
    .benefit-item.b-offset-4 {
        margin-left: 0;
    }

    .why-item {
        flex: 1 1 100%;
    }

    .step-item {
        flex: 1 1 100%;
    }

    .footer-col {
        flex: 1 1 100%;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .sticky-cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}
