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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0066cc;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0066cc;
}

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

.hero-visual {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.9;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    color: white;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.story-intro {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.story-lead {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #2d3748;
}

.story-intro p {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.insight-block {
    padding: 5rem 2rem;
    background: white;
}

.content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    line-height: 1.3;
}

.insight-text p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.insight-visual {
    flex: 1;
    height: 400px;
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
    border-radius: 12px;
}

.problem-amplify {
    padding: 6rem 2rem;
    background: #1a202c;
    color: white;
}

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

.problem-amplify h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f093fb;
}

.problem-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.transformation-story {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, white, #f7fafc);
}

.transformation-story h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.transformation-story p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.stat-highlight {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    padding: 3rem 0;
    border-top: 2px solid #e2e8f0;
    border-bottom: 2px solid #e2e8f0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: #4a5568;
}

.trust-builder {
    padding: 5rem 2rem;
    background: white;
}

.trust-builder h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-logos {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-placeholder {
    padding: 2rem 3rem;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-weight: 600;
    color: #4a5568;
}

.social-proof {
    padding: 5rem 2rem;
    background: #f093fb;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
}

.method-reveal {
    padding: 6rem 2rem;
    background: white;
}

.content-split-reverse {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 4rem;
    align-items: center;
}

.method-visual {
    flex: 1;
    height: 450px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    border-radius: 12px;
}

.method-text {
    flex: 1;
}

.method-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.method-text p {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.cta-inline {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-inline:hover {
    transform: translateX(5px);
}

.benefits-cascade {
    padding: 6rem 2rem;
    background: #f7fafc;
}

.benefits-cascade h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.benefit-list {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: #667eea;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

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

.authority-build {
    padding: 5rem 2rem;
    background: #1a202c;
    color: white;
}

.credentials-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.credential {
    text-align: center;
}

.credential h3 {
    font-size: 3.5rem;
    color: #f093fb;
    margin-bottom: 0.5rem;
}

.credential p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-pricing {
    padding: 6rem 2rem;
    background: white;
}

.services-pricing h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 4rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    padding: 2.5rem;
    background: #f7fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    transform: scale(1.05);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
    color: white;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #fee140;
    color: #1a202c;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

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

.service-card > p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
}

.service-card.featured .service-features li:before {
    color: #fee140;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #667eea;
}

.service-card.featured .service-price {
    color: white;
}

.service-select {
    width: 100%;
    padding: 1rem 2rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.service-select:hover {
    transform: translateY(-2px);
}

.service-card.featured .service-select {
    background: white;
    color: #667eea;
}

.guarantee-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.guarantee-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a202c;
}

.guarantee-section p {
    font-size: 1.3rem;
    text-align: center;
    color: #2d3748;
    margin-bottom: 1rem;
}

.urgency-block {
    padding: 6rem 2rem;
    background: #1a202c;
    color: white;
}

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    text-align: center;
}

.urgency-cta {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.urgency-cta p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #fee140;
}

.cta-urgent {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fee140;
    color: #1a202c;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 6px;
    transition: transform 0.3s;
}

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

.contact-section {
    padding: 6rem 2rem;
    background: white;
}

.contact-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    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: #667eea;
}

.cta-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s;
}

.cta-submit:hover {
    transform: translateY(-2px);
}

.final-push {
    padding: 5rem 2rem;
    background: #f7fafc;
}

.final-push h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.final-push p {
    font-size: 1.2rem;
    text-align: center;
    color: #4a5568;
    margin-bottom: 1rem;
}

.footer {
    background: #1a202c;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-col p {
    color: #cbd5e0;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

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

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

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
    z-index: 1001;
    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 {
    margin: 0;
    color: #4a5568;
}

.cookie-content a {
    color: #667eea;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.cookie-btn.accept {
    background: #667eea;
    color: white;
}

.cookie-btn.reject {
    background: #e2e8f0;
    color: #4a5568;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

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

    .nav-toggle {
        display: block;
    }

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

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

    .content-split,
    .content-split-reverse {
        flex-direction: column;
    }

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

    .stat-highlight {
        flex-direction: column;
        gap: 2rem;
    }

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

    .service-card.featured {
        transform: scale(1);
    }

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

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

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

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Additional Page Styles */

.page-header {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    margin-top: 70px;
}

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

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.legal-page {
    padding: 4rem 2rem;
    background: white;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.update-date {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #4a5568;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page ul li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
    color: #4a5568;
}

.legal-page a {
    color: #667eea;
    text-decoration: underline;
}

.thanks-section {
    padding: 8rem 2rem;
    background: white;
    min-height: 60vh;
    margin-top: 70px;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: #48bb78;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.thanks-message {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.submission-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 8px;
}

.selected-service {
    font-size: 1.1rem;
    color: #2d3748;
}

.next-steps {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.steps-list {
    list-style: none;
    max-width: 500px;
    margin: 0 auto 3rem;
    text-align: left;
}

.steps-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    color: #4a5568;
    font-size: 1.05rem;
}

.steps-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e2e8f0;
    color: #2d3748;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-button-secondary:hover {
    transform: translateY(-2px);
}

.about-story {
    padding: 5rem 2rem;
    background: white;
}

.about-story h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.about-story p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.values-section {
    padding: 5rem 2rem;
    background: #f7fafc;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.value-card p {
    color: #4a5568;
    line-height: 1.7;
}

.team-section {
    padding: 5rem 2rem;
    background: white;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.team-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.approach-section {
    padding: 5rem 2rem;
    background: #f7fafc;
}

.approach-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.approach-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.step p {
    color: #4a5568;
    line-height: 1.7;
}

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-info-section {
    padding: 5rem 2rem;
    background: white;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #2d3748;
}

.info-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

.info-item a {
    color: #667eea;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-cta {
    padding: 5rem 2rem;
    background: #f7fafc;
    text-align: center;
}

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

.contact-cta p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.services-detail {
    padding: 4rem 2rem;
    background: white;
}

.service-detail-card {
    background: #f7fafc;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    position: relative;
}

.service-detail-card.featured-service {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.service-detail-card.featured-service h2,
.service-detail-card.featured-service h3,
.service-detail-card.featured-service p,
.service-detail-card.featured-service li {
    color: white;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 3rem;
    background: #fee140;
    color: #1a202c;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
}

.service-detail-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.service-detail-card.featured-service .service-description {
    color: white;
    opacity: 0.95;
}

.service-info {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.service-includes {
    flex: 2;
    min-width: 300px;
}

.service-includes h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    color: #4a5568;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.service-detail-card.featured-service .service-includes li:before {
    color: #fee140;
}

.service-pricing-box {
    flex: 1;
    min-width: 200px;
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    align-self: flex-start;
}

.service-detail-card.featured-service .service-pricing-box {
    background: rgba(255,255,255,0.1);
}

.service-pricing-box .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.service-detail-card.featured-service .service-pricing-box .price {
    color: white;
}

.service-pricing-box p {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 1.5rem;
}

.service-detail-card.featured-service .service-pricing-box p {
    color: rgba(255,255,255,0.9);
}

.services-benefits {
    padding: 5rem 2rem;
    background: #f7fafc;
}

.services-benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.benefits-list {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.benefit h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.benefit p {
    color: #4a5568;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .thanks-section {
        padding: 5rem 2rem;
    }

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

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

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

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

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

    .benefits-list {
        flex-direction: column;
    }
}