/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
    font-size: 16px;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

/* Navigation */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-brand a {
    color: #1a1a1a;
}

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

.nav-links a {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.btn-accept {
    background: #10b981;
    color: white;
}

.btn-accept:hover {
    background: #059669;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid #ffffff;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #1e40af;
    transform: scale(1.05);
}

/* Hero Story Section */
.hero-story {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    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: white;
    max-width: 900px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 12px;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Narrow Content Sections */
.intro-narrow,
.content-narrow {
    max-width: 680px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.intro-narrow {
    margin: 5rem auto;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 500;
}

.intro-narrow p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.3rem;
    color: #374151;
}

/* Problem Amplification */
.problem-amplify {
    background: #fef3c7;
    padding: 5rem 5%;
    margin: 5rem 0;
}

.problem-content {
    max-width: 1000px;
    margin: 0 auto;
}

.problem-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #92400e;
}

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

.problem-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.problem-stat {
    font-size: 3.5rem;
    font-weight: 800;
    color: #b45309;
    margin-bottom: 1rem;
}

.problem-item p {
    font-size: 1.1rem;
    color: #78350f;
    line-height: 1.6;
}

.problem-conclusion {
    font-size: 1.25rem;
    text-align: center;
    color: #92400e;
    font-weight: 600;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    padding: 5rem 5%;
    background: #f9fafb;
}

.story-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.story-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
    color: #4b5563;
}

/* Inline CTA */
.cta-inline {
    text-align: center;
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.cta-link-arrow {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2563eb;
    transition: transform 0.3s ease;
}

.cta-link-arrow:hover {
    transform: translateX(10px);
}

/* Insight Reveal */
.insight-reveal {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.insight-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.insight-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
}

.insight-blocks {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.insight-block {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.insight-number {
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.7;
    display: block;
    margin-bottom: 0.8rem;
}

.insight-block h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.insight-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Trust Builder */
.trust-builder {
    padding: 5rem 5%;
    background: #ffffff;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.trust-intro {
    font-size: 1.2rem;
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.feature-card h5 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Testimonials Inline */
.testimonials-inline {
    padding: 5rem 5%;
    background: #f3f4f6;
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #10b981;
}

.testimonial-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1f2937;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 1rem;
    color: #6b7280;
    font-style: normal;
    font-weight: 600;
}

/* Transformation Visual */
.transformation-visual {
    padding: 5rem 5%;
    background: white;
}

.transformation-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.transformation-side {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    border-radius: 12px;
}

.transformation-side:first-child {
    background: #fee2e2;
}

.transformation-side:last-child {
    background: #d1fae5;
}

.transformation-side h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.transformation-list {
    list-style: none;
}

.transformation-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.transformation-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

.transform-after li:before {
    content: '✓';
    color: #059669;
}

/* CTA Section Block */
.cta-section-block {
    padding: 5rem 5%;
    background: #1f2937;
    color: white;
    text-align: center;
}

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

.cta-block-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-block-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #2563eb;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-large:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

/* Services Pricing */
.services-pricing {
    padding: 5rem 5%;
    background: #f9fafb;
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.pricing-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.pricing-intro p {
    font-size: 1.15rem;
    color: #6b7280;
}

.pricing-grid {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.featured {
    border: 3px solid #2563eb;
    transform: scale(1.05);
}

.badge-popular {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.price-header h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.price-age {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 2rem;
}

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

.price-features li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #4b5563;
    line-height: 1.6;
}

.price-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: white;
    text-align: center;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

/* Urgency Section */
.urgency-section {
    padding: 4rem 5%;
    background: #fef3c7;
    border-top: 4px solid #f59e0b;
    border-bottom: 4px solid #f59e0b;
}

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

.urgency-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #92400e;
}

.urgency-content p {
    font-size: 1.15rem;
    color: #78350f;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.urgency-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: #b45309;
    margin-top: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 5%;
    background: white;
}

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

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

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h5 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
}

/* Form Section */
.form-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.order-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    color: #1a1a1a;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #2563eb;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.form-privacy {
    text-align: center;
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 1.5rem;
}

.form-privacy a {
    color: #2563eb;
    text-decoration: underline;
}

/* Final Push */
.final-push {
    padding: 5rem 5%;
    background: #1f2937;
    color: white;
    text-align: center;
}

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

.final-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.final-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-final {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #10b981;
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

/* Footer */
.site-footer {
    background: #111827;
    color: white;
    padding: 4rem 5% 2rem;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h6 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-column p {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #9ca3af;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* About Page Specific */
.about-hero {
    padding: 5rem 5% 4rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

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

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-lead {
    font-size: 1.3rem;
    line-height: 1.7;
    opacity: 0.95;
}

.about-story {
    padding: 5rem 5%;
}

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

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
}

.story-content {
    flex: 1;
    min-width: 300px;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
    color: #4b5563;
}

.mission-section {
    padding: 5rem 5%;
    background: #f9fafb;
}

.mission-content {
    max-width: 1100px;
    margin: 0 auto;
}

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

.mission-statement {
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-weight: 600;
    color: #1f2937;
}

.mission-pillars {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.pillar {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pillar h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.pillar p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
}

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

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

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

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

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.team-member img {
    width: 100%;
    max-width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.team-member h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
}

.values-section {
    padding: 5rem 5%;
    background: #f3f4f6;
}

.values-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.value-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #2563eb;
}

.value-item h5 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
}

.impact-section {
    padding: 5rem 5%;
    background: white;
}

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

.impact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.impact-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.impact-stat {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2563eb;
    display: block;
    margin-bottom: 0.5rem;
}

.impact-stat p {
    font-size: 1rem;
    color: #6b7280;
}

.impact-note {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    text-align: left;
}

.cta-about {
    padding: 4rem 5%;
    background: #2563eb;
    color: white;
    text-align: center;
}

.cta-about-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-about-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Services Page Specific */
.services-hero {
    padding: 5rem 5% 4rem;
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    color: white;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.program-detail {
    padding: 5rem 5%;
}

.program-detail.alternate {
    background: #f9fafb;
}

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

.program-image-side {
    flex: 1;
    min-width: 300px;
}

.program-image-side img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.program-text-side {
    flex: 1.2;
    min-width: 300px;
}

.program-label {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.program-text-side h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.program-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.program-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
}

.program-text-side h4 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

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

.program-outcomes li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #374151;
}

.program-outcomes li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.btn-program {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2563eb;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-program:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.comparison-section {
    padding: 5rem 5%;
    background: white;
}

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

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: #1f2937;
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    text-align: left;
}

.comparison-table th {
    font-weight: 600;
    font-size: 1.05rem;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: #f9fafb;
}

.comparison-table td {
    color: #4b5563;
    font-size: 0.95rem;
}

.services-cta {
    padding: 4rem 5%;
    background: #f3f4f6;
    text-align: center;
}

.services-cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.services-cta-content p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Contact Page Specific */
.contact-hero {
    padding: 5rem 5% 4rem;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.contact-content {
    padding: 5rem 5%;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
}

.contact-note {
    font-size: 0.95rem;
    color: #6b7280;
    margin-top: 0.5rem;
    font-style: italic;
}

.contact-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.contact-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.contact-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.contact-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 0.8rem;
}

.visit-section,
.partners-section {
    padding: 4rem 5%;
    background: #f9fafb;
}

.partners-section {
    background: white;
}

.visit-content,
.partners-content {
    max-width: 900px;
    margin: 0 auto;
}

.visit-content h2,
.partners-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.visit-content p,
.partners-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
}

/* Thanks Page Specific */
.thanks-hero {
    padding: 5rem 5% 3rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-align: center;
}

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

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

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.25rem;
    opacity: 0.95;
}

.thanks-details {
    padding: 5rem 5%;
    background: white;
}

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

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

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.thanks-step {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #10b981;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.thanks-step h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.thanks-step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
}

.thanks-service {
    padding: 3rem 5%;
    background: #f3f4f6;
    text-align: center;
}

.thanks-service-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

#selected-service-name {
    font-size: 1.3rem;
    color: #2563eb;
    font-weight: 600;
}

.thanks-contact,
.thanks-resources {
    padding: 3rem 5%;
}

.thanks-contact {
    background: white;
}

.thanks-resources {
    background: #f9fafb;
}

.thanks-contact-content,
.thanks-resources-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-contact-content h3,
.thanks-resources-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.thanks-contact-content p,
.thanks-resources-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
}

.resources-list {
    list-style: none;
    margin-top: 2rem;
}

.resources-list li {
    margin-bottom: 1rem;
}

.resources-list a {
    font-size: 1.1rem;
    color: #2563eb;
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 5rem 5%;
    background: #f9fafb;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-updated {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 2.5rem;
    display: block;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #1f2937;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #374151;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: #4b5563;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.2rem;
}

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

.legal-container ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 0.7rem;
}

.legal-container a {
    color: #2563eb;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
}

.cookies-table thead {
    background: #1f2937;
    color: white;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookies-table th {
    font-weight: 600;
}

.cookies-table td {
    color: #4b5563;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-story h1 {
        font-size: 2rem;
    }

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
    }

    .legal-container {
        padding: 2rem 1.5rem;
    }

    .about-hero h1,
    .services-hero h1,
    .contact-hero h1,
    .thanks-hero h1 {
        font-size: 2.2rem;
    }

    .team-member img {
        max-width: 150px;
        height: 150px;
    }

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

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

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .nav-minimal {
        padding: 1rem 4%;
    }

    .nav-brand {
        font-size: 1.2rem;
    }

    .order-form {
        padding: 2rem 1.5rem;
    }

    .btn-large,
    .btn-final {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}