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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a2c3d;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #2d7a4f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a4d30;
}

ul {
    margin-bottom: 1.2rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Container Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Background Utilities */
.bg-accent {
    background: #f5f9f7;
}

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

.cookie-content {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-buttons button {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #4caf50;
    color: #ffffff;
}

.btn-primary:hover {
    background: #45a049;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* Navigation */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d7a4f;
    letter-spacing: -0.01em;
}

.logo:hover {
    color: #1a4d30;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2d7a4f;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
    padding: 4rem 20px;
    background: linear-gradient(135deg, #f5f9f7 0%, #e8f5e9 100%);
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 2rem 0;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 850px;
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.cta-hero {
    display: inline-flex;
    padding: 1rem 2.5rem;
    background: #2d7a4f;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-hero:hover {
    background: #1a4d30;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 122, 79, 0.3);
}

.hero-visual {
    max-width: 1200px;
    margin: 2rem auto 0;
    width: 100%;
}

.hero-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 50%, #43a047 100%);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Intro Section */
.intro-section {
    padding: 5rem 20px;
    background: #ffffff;
}

.intro-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
    font-weight: 400;
}

/* Impact Section */
.impact-section {
    padding: 6rem 20px;
    background: #ffffff;
}

.impact-visual {
    flex: 1;
    min-width: 300px;
}

.image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(to bottom, #a5d6a7 0%, #66bb6a 100%);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.impact-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.impact-text p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #4a5568;
}

/* Insight Section */
.insight-section {
    padding: 6rem 20px;
}

.section-title-centered {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
}

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-card {
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.insight-card h3 {
    color: #2d7a4f;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.insight-card p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Testimonial Section */
.testimonial-section {
    padding: 5rem 20px;
    background: #ffffff;
}

.testimonial-block {
    padding: 3rem;
    background: #f5f9f7;
    border-left: 5px solid #2d7a4f;
    border-radius: 6px;
}

.testimonial-block p {
    font-size: 1.25rem;
    line-height: 1.8;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.testimonial-block cite {
    font-style: normal;
    font-weight: 600;
    color: #2d7a4f;
    font-size: 1rem;
}

/* Services Section */
.services-section {
    padding: 6rem 20px;
    background: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-intro {
    font-size: 1.15rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-item {
    display: flex;
    flex-direction: column;
    background: #f5f9f7;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-item.featured {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border: 2px solid #4caf50;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #4caf50;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.service-content {
    padding: 2.5rem;
    flex: 1;
}

.service-content h3 {
    font-size: 1.8rem;
    color: #1a2c3d;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

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

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.service-pricing {
    padding: 2.5rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d7a4f;
}

.select-service {
    padding: 0.9rem 2rem;
    background: #2d7a4f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #1a4d30;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 122, 79, 0.3);
}

/* CTA Sections */
.cta-section-inline {
    padding: 4rem 20px;
    background: #2d7a4f;
    color: #ffffff;
    text-align: center;
}

.cta-section-inline h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section-inline p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Form Section */
.form-section {
    padding: 6rem 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f5f9f7 100%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.form-intro p {
    color: #4a5568;
    margin: 0;
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    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: #4caf50;
}

.btn-submit {
    padding: 1rem 2rem;
    background: #2d7a4f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #1a4d30;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 122, 79, 0.3);
}

/* Trust Section */
.trust-section {
    padding: 5rem 20px;
}

.trust-logos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.trust-item {
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #4a5568;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Footer */
.main-footer {
    background: #1a2c3d;
    color: #ffffff;
    padding: 4rem 20px 2rem;
}

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

.footer-section h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #b0bec5;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul a {
    color: #b0bec5;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    color: #b0bec5;
    font-size: 0.9rem;
    margin: 0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
    transition: transform 0.3s ease;
}

.sticky-cta-btn {
    padding: 1rem 2rem;
    background: #2d7a4f;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(45, 122, 79, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #1a4d30;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 122, 79, 0.5);
}

/* Page Hero */
.page-hero {
    padding: 5rem 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f5f9f7 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

.page-hero-lead {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    padding: 5rem 20px;
    background: #ffffff;
}

.intro-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* Values Section */
.values-section {
    padding: 6rem 20px;
}

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

.value-card {
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    color: #2d7a4f;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

/* Team Section */
.team-section {
    padding: 6rem 20px;
    background: #ffffff;
}

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

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: #f5f9f7;
    border-radius: 8px;
}

.team-photo-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.team-role {
    color: #2d7a4f;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.team-member p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Approach Section */
.approach-section {
    padding: 5rem 20px;
    background: #ffffff;
}

.approach-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

/* Impact Numbers */
.impact-numbers-section {
    padding: 6rem 20px;
}

.impact-numbers {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.impact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2d7a4f;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #4a5568;
    text-align: center;
}

/* Commitment Section */
.commitment-section {
    padding: 5rem 20px;
    background: #ffffff;
}

.commitment-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

/* CTA Bottom */
.cta-section-bottom {
    padding: 5rem 20px;
    background: linear-gradient(135deg, #2d7a4f 0%, #1a4d30 100%);
    text-align: center;
}

.cta-section-bottom h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section-bottom p {
    color: #e8f5e9;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #2d7a4f;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Services Detail Section */
.services-detail-section {
    padding: 4rem 20px;
    background: #ffffff;
}

.program-item {
    margin-bottom: 4rem;
    padding: 3rem;
    background: #f5f9f7;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.program-item.featured-program {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border: 2px solid #4caf50;
}

.program-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.program-header h2 {
    font-size: 2rem;
    margin: 0;
}

.program-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d7a4f;
}

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

.program-description h3 {
    font-size: 1.3rem;
    color: #2d7a4f;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.program-description p {
    color: #4a5568;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.program-description ul {
    list-style: none;
    margin-top: 1rem;
}

.program-description ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.7rem;
    color: #4a5568;
}

.program-description ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.2rem;
}

.program-cta {
    display: flex;
    justify-content: center;
    padding-top: 1.5rem;
}

/* Enrollment Section */
.enrollment-section {
    padding: 5rem 20px;
    text-align: center;
}

.enrollment-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.enrollment-section p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-content-section {
    padding: 5rem 20px;
    background: #ffffff;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item h3 {
    color: #2d7a4f;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

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

.contact-item a {
    color: #2d7a4f;
    font-weight: 600;
}

.note {
    font-size: 0.9rem;
    font-style: italic;
    color: #6c757d;
}

.contact-visual {
    flex: 1;
}

.contact-image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(to bottom right, #66bb6a 0%, #4caf50 100%);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 20px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    color: #2d7a4f;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* CTA Contact Section */
.cta-contact-section {
    padding: 5rem 20px;
    background: #f5f9f7;
    text-align: center;
}

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

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

/* Thanks Page */
.thanks-section {
    padding: 6rem 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f9f7 0%, #e8f5e9 100%);
}

.thanks-content {
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #2d7a4f;
    margin-bottom: 1rem;
}

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

.thanks-details {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #f5f9f7;
    border-radius: 8px;
}

.thanks-details ul {
    margin-left: 1.5rem;
}

.selected-program-info {
    font-size: 1.1rem;
    color: #2d7a4f;
    font-weight: 600;
}

.thanks-next-steps {
    margin: 3rem 0;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

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

.thanks-cta {
    margin-top: 3rem;
    text-align: center;
}

.thanks-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.thanks-links .btn-primary,
.thanks-links .btn-secondary {
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.thanks-links .btn-primary {
    background: #2d7a4f;
    color: #ffffff;
}

.thanks-links .btn-primary:hover {
    background: #1a4d30;
    transform: translateY(-2px);
}

.thanks-links .btn-secondary {
    background: transparent;
    color: #2d7a4f;
    border: 2px solid #2d7a4f;
}

.thanks-links .btn-secondary:hover {
    background: #f5f9f7;
}

/* Legal Pages */
.legal-page {
    padding: 5rem 20px;
    background: #ffffff;
}

.legal-updated {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 2rem;
}

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

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-page ul {
    margin-left: 1.5rem;
}

.legal-page p {
    color: #4a5568;
    line-height: 1.75;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background: #f5f9f7;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #2d7a4f;
    border-bottom: 2px solid #e0e0e0;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    color: #4a5568;
}

.cookie-table tbody tr:hover {
    background: #f5f9f7;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .container-split {
        flex-direction: row;
        gap: 3rem;
    }

    .insight-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .insight-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1;
        min-width: calc(50% - 1.25rem);
    }

    .impact-numbers {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .impact-stat {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .trust-logos {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-item {
        flex: 1;
        min-width: calc(50% - 0.75rem);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .contact-layout {
        flex-direction: row;
        gap: 4rem;
    }

    .contact-info,
    .contact-visual {
        flex: 1;
    }

    .program-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .thanks-links {
        flex-direction: row;
        justify-content: center;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }

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

    .insight-card {
        min-width: calc(33.333% - 1.35rem);
    }

    .value-card {
        min-width: calc(50% - 1rem);
    }

    .team-member {
        min-width: calc(33.333% - 1.67rem);
    }

    .impact-stat {
        min-width: calc(25% - 1.5rem);
    }

    .trust-item {
        min-width: calc(25% - 1.125rem);
    }

    .nav-links {
        gap: 2.5rem;
    }
}

/* Mobile Specific */
@media (max-width: 767px) {
    .nav-links {
        gap: 1.2rem;
        font-size: 0.9rem;
    }

    h1 {
        font-size: 2rem;
    }

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

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

    .section-title-centered {
        font-size: 1.8rem;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .form-wrapper {
        padding: 2rem;
    }
}