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

:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --accent: #f39c12;
    --text: #333;
    --light: #ecf0f1;
    --white: #ffffff;
    --overlay: rgba(0, 0, 0, 0.6);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    overflow-x: hidden;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 1000;
}

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

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

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

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

.mobile-menu a {
    text-decoration: none;
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 500;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--text);
}

.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 20px;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--overlay);
    z-index: -1;
}

.hero-visual h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.hook-section {
    padding: 100px 20px;
    background: var(--light);
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
}

.narrow-content.center {
    text-align: center;
}

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

.hook-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}

.story-flow {
    padding: 80px 20px;
    background: var(--white);
}

.story-block {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.insight-reveal {
    padding: 100px 20px;
    background: var(--primary);
    color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.insight-reveal h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
}

.insight-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.insight-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 20px;
}

.insight-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.insight-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.trust-block {
    padding: 100px 20px;
    background: var(--light);
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.trust-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.trust-item h4 {
    padding: 25px 25px 10px;
    font-size: 1.4rem;
    color: var(--primary);
}

.trust-item p {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.7;
}

.problem-amplify {
    padding: 100px 20px;
    background: var(--white);
}

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

.problem-amplify p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}

.emphasis {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 30px 0;
}

.testimonial-flow {
    padding: 80px 20px;
    background: var(--light);
}

.testimonial-item {
    max-width: 900px;
    margin: 0 auto 50px;
    background: var(--white);
    padding: 50px;
    border-left: 5px solid var(--secondary);
    border-radius: 10px;
}

.quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.author {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.benefits-reveal {
    padding: 100px 20px;
    background: var(--white);
}

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

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.benefit-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.visual-showcase {
    padding: 80px 20px;
    background: var(--light);
}

.showcase-grid {
    display: flex;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.showcase-item {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.showcase-item.large {
    flex: 2;
    min-width: 400px;
}

.showcase-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.cta-break {
    padding: 100px 20px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-centered h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.cta-large {
    display: inline-block;
    padding: 20px 50px;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.services-pricing {
    padding: 100px 20px;
    background: var(--white);
}

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

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--light);
    padding: 40px 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-card.featured h3 {
    color: var(--white);
}

.service-desc {
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.7;
    flex-grow: 1;
}

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

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

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

.service-card.featured .service-features li::before {
    color: var(--accent);
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary);
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.service-card.featured .service-price {
    color: var(--accent);
    border-top-color: rgba(255, 255, 255, 0.2);
}

.urgency-block {
    padding: 60px 20px;
    background: var(--accent);
    color: var(--white);
}

.urgency-block h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.urgency-block p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.small-text {
    font-size: 1rem;
    opacity: 0.9;
}

.order-section {
    padding: 100px 20px;
    background: var(--light);
}

.order-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary);
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.order-form {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.form-checkbox input {
    margin-top: 5px;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: #666;
}

.form-checkbox a {
    color: var(--secondary);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.final-push {
    padding: 100px 20px;
    background: var(--white);
}

.final-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-content h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.final-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.8;
}

.cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.3);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 18px 35px;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    transition: transform 0.3s;
}

.sticky-cta a:hover {
    transform: scale(1.05);
}

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

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

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

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: var(--white);
    padding: 25px 20px;
    z-index: 2000;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 1rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-accept {
    background: var(--secondary);
    color: var(--white);
}

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

.btn-accept:hover,
.btn-reject:hover {
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .floating-nav {
        top: 10px;
        padding: 12px 25px;
        width: calc(100% - 40px);
        left: 20px;
        transform: none;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-visual h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .story-block {
        flex-direction: column;
    }

    .insight-cards {
        flex-direction: column;
    }

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

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

    .showcase-item,
    .showcase-item.large {
        min-width: 100%;
    }

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

    .order-form {
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .sticky-cta a {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .hero-visual h1 {
        font-size: 2rem;
    }

    .hook-section h2,
    .problem-amplify h2,
    .final-content h3 {
        font-size: 2rem;
    }

    .insight-reveal h2,
    .benefits-reveal h2,
    .services-pricing h2,
    .order-section h2 {
        font-size: 2.2rem;
    }

    .cta-centered h3 {
        font-size: 1.8rem;
    }

    .benefit-row {
        flex-direction: column;
        gap: 15px;
    }
}

.page-header {
    padding: 120px 20px 60px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.header-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-intro {
    padding: 80px 20px;
    background: var(--white);
}

.lead {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.values-section {
    padding: 100px 20px;
    background: var(--light);
}

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

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
}

.team-story {
    padding: 80px 20px;
    background: var(--white);
}

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

.team-story p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.team-image {
    width: 100%;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.process-section {
    padding: 100px 20px;
    background: var(--light);
}

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

.process-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
}

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

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

.process-step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
}

.why-us {
    padding: 100px 20px;
    background: var(--white);
}

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

.why-us p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.services-detail {
    padding: 80px 20px;
    background: var(--light);
}

.service-detail-card {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.service-detail-image {
    flex: 1;
    min-width: 400px;
}

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

.service-detail-content {
    flex: 1;
    padding: 50px;
}

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

.price-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary);
}

.included-list,
.options-list {
    list-style: none;
    margin-bottom: 20px;
}

.included-list li,
.options-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.included-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.options-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.additional-info {
    padding: 80px 20px;
    background: var(--white);
}

.additional-info h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary);
}

.info-block {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ddd;
}

.info-block:last-child {
    border-bottom: none;
}

.info-block h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.info-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 10px;
}

.contact-main {
    padding: 80px 20px;
    background: var(--light);
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

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

.contact-item {
    margin-bottom: 40px;
}

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

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

.contact-item a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.small-note {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}

.faq-quick {
    list-style: none;
}

.faq-quick li {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--white);
    border-radius: 8px;
}

.contact-map {
    flex: 1;
}

.contact-map h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.map-placeholder {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 25px;
}

.map-overlay p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-cta {
    padding: 100px 20px;
    background: var(--primary);
    color: var(--white);
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.thanks-section {
    padding: 120px 20px 80px;
    background: var(--light);
    min-height: 80vh;
}

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

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

.thanks-lead {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 40px;
}

.thanks-details {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.order-summary {
    margin-bottom: 25px;
}

.order-summary h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.order-summary p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #555;
}

.thanks-message {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.7;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary);
}

.steps-timeline {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.timeline-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

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

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

.timeline-step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-outline {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

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

.thanks-note {
    background: rgba(243, 156, 18, 0.1);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--accent);
}

.thanks-note p {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #555;
}

.thanks-note a {
    color: var(--secondary);
    font-weight: 600;
}

.legal-content {
    padding: 80px 20px;
    background: var(--white);
}

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

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

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

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

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

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

.legal-updated {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
    margin-bottom: 40px;
}

@media (max-width: 968px) {
    .contact-grid {
        flex-direction: column;
    }

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

    .service-detail-image {
        min-width: 100%;
        height: 300px;
    }

    .service-detail-content {
        padding: 30px 20px;
    }

    .steps-timeline {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }
}