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

:root {
    --primary: #2D5F8D;
    --secondary: #E8743B;
    --dark: #1A2332;
    --light: #F7F9FC;
    --accent: #4A90B8;
    --text: #2C3E50;
    --text-light: #6C7A8C;
    --border: #E1E8ED;
    --success: #27AE60;
    --warning: #F39C12;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

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

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

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

.btn-cookie.accept {
    background: var(--success);
    color: #fff;
}

.btn-cookie.reject {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

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

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

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

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

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

.nav-cta {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: #D86835;
    transform: translateY(-2px);
}

.hero-story {
    height: 85vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-story::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.hero-overlay {
    text-align: center;
    max-width: 900px;
    color: #fff;
    position: relative;
    z-index: 1;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.95;
}

.story-intro {
    padding: 6rem 2rem;
    background: var(--light);
}

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

.lead-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.narrow-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.insight-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.insight-visual {
    flex: 0 0 300px;
    text-align: center;
    background: var(--primary);
    color: #fff;
    padding: 3rem;
    border-radius: 20px;
}

.stat-large {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.insight-visual p {
    font-size: 1.1rem;
}

.insight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.insight-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.problem-amplify {
    background: var(--dark);
    color: #fff;
    padding: 6rem 2rem;
}

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

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

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

.problem-card {
    flex: 1 1 calc(50% - 1rem);
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
}

.problem-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

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

.transition-hook {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #fff 0%, var(--light) 100%);
}

.emphasis {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.solution-reveal {
    padding: 6rem 2rem;
    background: #fff;
}

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

.reveal-content {
    flex: 1;
}

.reveal-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.reveal-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.reveal-points {
    margin-top: 2rem;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.point-icon {
    color: var(--success);
    font-size: 1.5rem;
    font-weight: bold;
}

.reveal-visual {
    flex: 0 0 400px;
}

.visual-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 20px;
}

.trust-builder {
    padding: 6rem 2rem;
    background: var(--light);
}

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

.trust-builder h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.testimonial-inline {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--secondary);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.methodology {
    padding: 6rem 2rem;
    background: #fff;
}

.methodology h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark);
}

.method-flow {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.method-step {
    flex: 1 1 calc(25% - 1.5rem);
    text-align: center;
    padding: 2rem;
}

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

.method-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.method-step p {
    font-size: 1rem;
    color: var(--text);
}

.benefits-deep {
    padding: 6rem 2rem;
    background: var(--light);
}

.benefits-deep h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.benefit-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.benefit-item p {
    font-size: 1.05rem;
    color: var(--text);
}

.urgency-subtle {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--secondary) 0%, #D86835 100%);
    color: #fff;
}

.urgency-subtle .emphasis {
    color: #fff;
    font-size: 1.7rem;
}

.urgency-subtle p {
    font-size: 1.2rem;
    line-height: 1.7;
}

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

.services-pricing h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.pricing-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--text);
}

.service-selection {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.service-option {
    position: relative;
}

.service-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.service-card {
    display: block;
    background: var(--light);
    padding: 2rem;
    border-radius: 12px;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.service-option input[type="radio"]:checked + .service-card {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 4px 20px rgba(45, 95, 141, 0.15);
}

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

.service-card.popular,
.service-card.featured {
    border: 3px solid var(--secondary);
}

.popular-badge,
.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.featured-badge {
    background: var(--success);
}

.service-header {
    margin-bottom: 1rem;
}

.service-header h3 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.age-range {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
}

.service-desc {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.service-detail {
    font-size: 0.95rem;
    color: var(--text-light);
}

.form-section {
    background: var(--light);
    padding: 3rem;
    border-radius: 16px;
    margin-top: 4rem;
}

.form-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark);
    text-align: center;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.form-col {
    flex: 1 1 calc(50% - 0.75rem);
    display: flex;
    flex-direction: column;
}

.form-col-full {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
}

.form-container label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

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

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

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-primary:hover {
    background: #244A6F;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 95, 141, 0.3);
}

.final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.btn-cta-large {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    background: #D86835;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.guarantee {
    padding: 4rem 2rem;
    background: var(--light);
    text-align: center;
}

.guarantee h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.guarantee p {
    font-size: 1.1rem;
    color: var(--text);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 1.25rem 2rem;
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.sticky-cta.show {
    display: flex;
}

.sticky-cta span {
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-sticky {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-sticky:hover {
    background: #D86835;
    transform: translateY(-2px);
}

.footer {
    background: var(--dark);
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

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

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.page-hero {
    height: 50vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin-bottom: 4rem;
}

.about-intro {
    padding: 4rem 2rem;
}

.mission-section {
    padding: 5rem 2rem;
    background: var(--light);
}

.mission-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

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

.approach-item {
    flex: 1 1 calc(50% - 1rem);
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid var(--primary);
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.approach-item p {
    font-size: 1.05rem;
    color: var(--text);
}

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

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.values-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.team-philosophy {
    padding: 5rem 2rem;
    background: var(--light);
}

.team-philosophy h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.philosophy-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

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

.results-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.outcome-list {
    list-style: none;
    margin: 2rem 0;
}

.outcome-list li {
    font-size: 1.15rem;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text);
}

.outcome-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.commitment-section {
    padding: 5rem 2rem;
    background: var(--light);
}

.commitment-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

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

.commitment-item {
    flex: 1 1 calc(50% - 1rem);
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
}

.commitment-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.commitment-item p {
    font-size: 1.05rem;
    color: var(--text);
}

.final-about-cta {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
}

.final-about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-overview {
    padding: 4rem 2rem;
}

.services-detailed {
    padding: 2rem 2rem 6rem;
    background: var(--light);
}

.service-detail-card {
    background: #fff;
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    border: 2px solid var(--border);
}

.service-detail-card.featured-service {
    border: 3px solid var(--secondary);
}

.service-detail-card.special-offer {
    border: 3px solid var(--success);
}

.popular-tag,
.value-tag {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--secondary);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
}

.value-tag {
    background: var(--success);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border);
}

.service-detail-header h2 {
    font-size: 2rem;
    color: var(--dark);
}

.service-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.age-badge {
    background: var(--primary);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.service-detail-body h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--dark);
}

.inclusion-list {
    list-style: none;
    margin-bottom: 2rem;
}

.inclusion-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text);
}

.inclusion-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.3rem;
}

.btn-secondary {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    margin-top: 1.5rem;
}

.btn-secondary:hover {
    background: #D86835;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 116, 59, 0.3);
}

.comparison-section {
    padding: 5rem 2rem;
    background: #fff;
}

.comparison-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
}

.comparison-table tr:hover {
    background: var(--light);
}

.faq-section {
    padding: 5rem 2rem;
    background: var(--light);
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.faq-item {
    background: #fff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

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

.faq-item p {
    font-size: 1.05rem;
    color: var(--text);
}

.services-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.contact-page {
    padding: 5rem 2rem;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

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

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.info-item p {
    font-size: 1.05rem;
    color: var(--text);
}

.contact-form-section {
    flex: 1;
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: var(--light);
    padding: 4rem;
    border-radius: 16px;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.selected-service-display {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary);
}

.selected-service-display h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.policy-page {
    padding: 5rem 2rem;
}

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

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.policy-content .last-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.policy-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.policy-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.policy-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    line-height: 1.7;
}

.policy-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.policy-content ul li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: var(--text);
}

.contact-note {
    padding: 3rem 2rem;
    background: var(--light);
    text-align: center;
}

.contact-note p {
    font-size: 1.05rem;
    color: var(--text);
}

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

.contact-note a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 1rem;
        top: 10px;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

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

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

    .insight-visual {
        flex: 1 1 auto;
    }

    .problem-card {
        flex: 1 1 100%;
    }

    .split-reveal {
        flex-direction: column;
    }

    .reveal-visual {
        flex: 1 1 auto;
    }

    .method-flow {
        flex-direction: column;
    }

    .method-step {
        flex: 1 1 auto;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .sticky-cta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .approach-grid,
    .commitment-grid {
        flex-direction: column;
    }

    .approach-item,
    .commitment-item {
        flex: 1 1 auto;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .service-meta {
        align-items: flex-start;
    }

    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }
}
