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

:root {
    --primary-color: #2c5f6f;
    --secondary-color: #7fa99b;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 30px;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.ad-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 20px;
    font-style: italic;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    padding: 100px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-size: 1.1rem;
    color: var(--text-dark);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.ad-notice-mobile {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 20px;
}

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
    padding: 60px 5%;
    overflow: hidden;
}

.hero-offset-left {
    position: relative;
    z-index: 10;
    max-width: 580px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    margin-left: 8%;
}

.hero-offset-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-offset-left p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 58%;
    height: 85%;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-light);
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.cta-primary:hover {
    background: #1f4450;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.intro-offset {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 120px 8%;
    background: var(--bg-light);
    position: relative;
}

.intro-block-right {
    flex: 1;
    padding-left: 40px;
}

.intro-block-right h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

.intro-block-right p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-visual-left {
    flex: 1;
    position: relative;
    transform: translateY(-40px);
}

.intro-visual-left img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    background-color: var(--secondary-color);
}

.benefits-irregular {
    padding: 100px 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    position: relative;
}

.benefit-card {
    width: 320px;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-card img {
    width: 100%;
    height: 220px;
    background-color: var(--secondary-color);
}

.benefit-card h3 {
    padding: 20px 24px 10px;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.benefit-card p {
    padding: 0 24px 24px;
    color: var(--text-light);
    line-height: 1.6;
}

.card-top-left {
    align-self: flex-start;
    transform: translateY(-20px);
}

.card-bottom-right {
    align-self: flex-end;
    transform: translateY(30px);
}

.card-center {
    align-self: center;
}

.process-asymmetric {
    display: flex;
    padding: 100px 5%;
    gap: 80px;
    background: var(--bg-white);
}

.process-text-block {
    flex: 1;
    padding-right: 40px;
}

.process-text-block h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.step-number {
    min-width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.process-step h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

.process-image-overlap {
    flex: 1;
    position: relative;
}

.process-image-overlap img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-light);
}

.testimonials-offset {
    padding: 100px 8%;
    background: var(--bg-light);
}

.testimonials-offset h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-item {
    max-width: 360px;
    background: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-item.offset {
    transform: translateY(30px);
}

.testimonial-item p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.services-selection {
    padding: 100px 5%;
    background: var(--bg-white);
}

.services-selection h2 {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card {
    width: 340px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card.featured {
    border-color: var(--primary-color);
}

.service-card.premium {
    border-color: var(--accent-color);
}

.service-card img {
    width: 100%;
    height: 200px;
    background-color: var(--bg-light);
}

.service-card .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card .badge.premium {
    background: var(--accent-color);
}

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 24px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card .price {
    padding: 0 24px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #1f4450;
}

.form-section {
    padding: 100px 5%;
    background: var(--bg-light);
    display: none;
}

.form-section.active {
    display: block;
}

.form-container-offset {
    max-width: 680px;
    margin-left: 12%;
    background: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-container-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-container-offset > p {
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.6;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: var(--bg-light);
    cursor: not-allowed;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 4px;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: 400;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1f4450;
}

.cta-overlap {
    padding: 120px 5%;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 700px;
    margin-left: auto;
    margin-right: 10%;
    text-align: right;
    color: var(--bg-white);
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.footer-asymmetric {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 80px 5% 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p {
    line-height: 1.7;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.7;
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 25px 5%;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    padding: 12px 30px;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie:hover {
    background: #c49564;
}

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

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

.page-hero-offset {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 140px 8% 80px;
    min-height: 70vh;
}

.hero-content-left {
    flex: 1;
    max-width: 600px;
}

.hero-content-left h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content-left p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
}

.hero-image-right {
    flex: 1;
    transform: translateY(30px);
}

.hero-image-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-light);
}

.story-section {
    padding: 80px 8%;
    background: var(--bg-light);
}

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

.story-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-offset {
    padding: 100px 5%;
    background: var(--bg-white);
}

.values-offset h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.value-card {
    width: 280px;
    padding: 35px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
}

.value-card.left {
    transform: translateY(-20px);
}

.value-card.right {
    transform: translateY(20px);
}

.value-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.team-asymmetric {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 8%;
    background: var(--bg-light);
}

.team-image-overlap {
    flex: 1;
    transform: translateY(-30px);
}

.team-image-overlap img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    background-color: var(--secondary-color);
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.team-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.approach-section {
    padding: 100px 5%;
    background: var(--bg-white);
}

.approach-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.approach-item {
    width: 280px;
    text-align: center;
    padding: 30px;
}

.approach-item.offset {
    transform: translateY(30px);
}

.approach-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.approach-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

.cta-about {
    padding: 80px 5%;
    background: var(--bg-light);
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-hero-services {
    padding: 160px 8% 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    text-align: center;
}

.page-hero-services h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
}

.page-hero-services p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-detailed {
    padding: 80px 5%;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

.service-detail-card.premium-card {
    border: 2px solid var(--accent-color);
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    background-color: var(--bg-light);
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.popular-badge,
.premium-badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.premium-badge {
    background: var(--accent-color);
}

.service-detail-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.btn-service {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #1f4450;
}

.faq-section {
    padding: 100px 8%;
    background: var(--bg-light);
}

.faq-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.faq-item {
    width: 380px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

.cta-services {
    padding: 80px 5%;
    background: var(--bg-white);
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-services p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
}

.page-hero-contact {
    padding: 160px 8% 80px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.page-hero-contact h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero-contact p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-content {
    display: flex;
    gap: 60px;
    padding: 80px 5%;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.info-card h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 8px;
}

.info-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 12px;
}

.contact-map-placeholder {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: var(--bg-light);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: var(--bg-white);
    padding: 20px;
    text-align: center;
}

.contact-cta {
    padding: 80px 5%;
    background: var(--bg-light);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 5% 80px;
    background: var(--bg-light);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 35px;
}

.confirmation-details {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.confirmation-details p {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.step-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.step-num {
    min-width: 35px;
    height: 35px;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-item p {
    color: var(--text-light);
    line-height: 1.6;
    padding-top: 5px;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.legal-page {
    padding: 140px 8% 80px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.legal-intro {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

    .hero-offset-left {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        border-radius: 12px;
    }

    .intro-offset {
        flex-direction: column;
    }

    .process-asymmetric {
        flex-direction: column;
    }

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

    .contact-content {
        flex-direction: column;
    }

    .team-asymmetric {
        flex-direction: column;
    }

    .page-hero-offset {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-offset-left {
        padding: 40px 30px;
    }

    .services-cards {
        gap: 25px;
    }

    .service-card {
        width: 100%;
        max-width: 380px;
    }

    .form-row {
        flex-direction: column;
    }

    .cta-content {
        margin-right: 0;
        text-align: center;
    }

    .footer-grid {
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .thanks-content {
        padding: 40px 30px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}