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

:root {
    --primary-color: #2C3E50;
    --secondary-color: #E67E22;
    --accent-color: #16A085;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #ECF0F1;
    --bg-white: #FFFFFF;
    --border-color: #BDC3C7;
    --success-color: #27AE60;
    --error-color: #E74C3C;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-immersive {
    position: relative;
    height: 100vh;
    min-height: 600px;
    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;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(22, 160, 133, 0.85) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-wrapper {
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: var(--secondary-color);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

.cta-hero:hover {
    background: #D35400;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.4);
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 20px;
}

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

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

.story-hook p {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.opening-line {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-color);
}

.emphasis-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 40px;
}

.insight-reveal {
    padding: 100px 20px;
    background: white;
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.insight-text p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.reveal-text {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 21px;
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
    margin-top: 30px;
}

.insight-visual {
    flex: 1;
}

.insight-visual img {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.section-heading {
    font-size: 44px;
    margin-bottom: 50px;
    text-align: center;
}

.problem-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.problem-card p {
    line-height: 1.7;
    opacity: 0.95;
}

.cta-inline {
    text-align: center;
    margin-top: 40px;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.testimonial-flow {
    padding: 100px 20px;
    background: linear-gradient(135deg, #16A085 0%, #2C3E50 100%);
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-featured {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.testimonial-featured p {
    font-size: 26px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-featured cite {
    font-size: 18px;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.solution-intro {
    background: var(--bg-light);
    padding: 100px 20px;
}

.solution-intro h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.solution-intro p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.benefits-cascade {
    padding: 100px 20px;
    background: white;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.benefit-block {
    display: flex;
    gap: 50px;
    align-items: center;
}

.benefit-offset-left {
    padding-left: 0;
}

.benefit-offset-right {
    flex-direction: row-reverse;
    padding-right: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefit-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
}

.benefit-image {
    flex: 1;
}

.benefit-image img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.social-proof {
    background: var(--bg-light);
    padding: 100px 20px;
}

.social-proof h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
    font-style: normal;
}

.approach-reveal {
    padding: 100px 20px;
    background: white;
}

.approach-reveal h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.approach-reveal p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.urgency-builder {
    background: var(--error-color);
    padding: 80px 20px;
}

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

.urgency-text {
    font-size: 24px;
    line-height: 1.6;
    color: white;
    font-weight: 600;
    margin-bottom: 25px;
}

.offerings-reveal {
    padding: 100px 20px;
    background: var(--bg-light);
}

.offerings-heading {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.offerings-intro {
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.offerings-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.offering-featured {
    flex: 1 1 100%;
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--secondary-color);
    position: relative;
}

.offering-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 320px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.offering-badge {
    position: absolute;
    top: -15px;
    right: 40px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.offering-featured h3,
.offering-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.offering-description {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.offering-features {
    list-style: none;
    margin-bottom: 30px;
}

.offering-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-light);
    font-size: 16px;
}

.offering-features li:before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: 700;
    margin-right: 10px;
}

.offering-price {
    margin-bottom: 30px;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
}

.btn-select-service {
    width: 100%;
    padding: 18px;
    background: var(--secondary-color);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(22, 160, 133, 0.3);
}

.guarantee-section {
    padding: 80px 20px;
    background: white;
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #16A085 0%, #2C3E50 100%);
    padding: 50px;
    border-radius: 12px;
    color: white;
    text-align: center;
}

.guarantee-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.guarantee-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.guarantee-subtext {
    font-style: italic;
    opacity: 0.9;
}

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

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

.final-cta-content h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.final-cta-content p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-final-cta {
    display: inline-block;
    padding: 20px 50px;
    background: var(--secondary-color);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-final-cta:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.enrollment-form {
    padding: 100px 20px;
    background: white;
}

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

.form-container h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.form-intro {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
}

.enrollment-form-wrapper {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    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: var(--accent-color);
}

.btn-submit-form {
    width: 100%;
    padding: 18px;
    background: var(--secondary-color);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-form:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

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

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

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

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

.sticky-cta-btn {
    display: block;
    padding: 16px 35px;
    background: var(--secondary-color);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(22, 160, 133, 0.4);
}

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

.cookie-content p {
    flex: 1;
    line-height: 1.6;
}

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

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

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

.btn-cookie-accept:hover {
    background: var(--accent-color);
}

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

.btn-cookie-reject:hover {
    background: white;
    color: var(--primary-color);
}

.page-hero {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
}

.page-hero .hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.page-hero .hero-content p {
    font-size: 22px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.story-section {
    padding: 80px 20px;
    background: white;
}

.story-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.mission-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.mission-content {
    flex: 1;
}

.mission-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.mission-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.mission-image {
    flex: 1;
}

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

.approach-section {
    padding: 80px 20px;
    background: white;
}

.approach-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.approach-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.team-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.impact-section {
    padding: 80px 20px;
    background: white;
}

.impact-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.stats-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 18px;
    color: var(--text-dark);
}

.values-section {
    padding: 80px 20px;
    background: var(--primary-color);
    color: white;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.value-card p {
    line-height: 1.7;
    opacity: 0.95;
}

.cta-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--secondary-color);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.programs-intro {
    padding: 60px 20px;
    background: white;
    text-align: center;
}

.programs-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.programs-intro p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
}

.programs-detailed {
    padding: 60px 20px;
    background: var(--bg-light);
}

.program-card {
    max-width: 900px;
    margin: 0 auto 50px;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.program-featured {
    border: 3px solid var(--secondary-color);
}

.program-badge {
    position: absolute;
    top: -15px;
    right: 40px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 20px;
}

.program-header h2 {
    font-size: 32px;
    color: var(--primary-color);
}

.program-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
}

.program-tagline {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.program-details h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.program-features-detailed,
.program-structure {
    list-style: none;
    margin-bottom: 25px;
}

.program-features-detailed li,
.program-structure li {
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-light);
}

.program-features-detailed li:before {
    content: "→ ";
    color: var(--accent-color);
    font-weight: 700;
    margin-right: 10px;
}

.program-structure li:before {
    content: "• ";
    color: var(--secondary-color);
    font-weight: 700;
    margin-right: 10px;
}

.program-details p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.comparison-section {
    padding: 80px 20px;
    background: white;
}

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

.comparison-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

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

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

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-size: 18px;
}

.comparison-table td {
    font-size: 16px;
}

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

.enrollment-cta {
    padding: 60px 20px;
    background: var(--bg-light);
}

.enrollment-cta h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.enrollment-cta p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 50px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-section {
    padding: 80px 20px;
    background: white;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1.2;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
}

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

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

.contact-faq {
    margin-top: 40px;
}

.contact-faq h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-image {
    flex: 1;
}

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

.contact-cta-box {
    background: var(--primary-color);
    color: white;
    padding: 35px;
    border-radius: 12px;
}

.contact-cta-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-cta-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.locations-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

.locations-intro {
    text-align: center;
    font-size: 17px;
    margin-bottom: 50px;
    color: var(--text-light);
}

.locations-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.location-card {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.location-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.location-detail {
    color: var(--text-light);
    font-size: 15px;
}

.thanks-hero {
    padding: 140px 20px 100px;
    background: var(--bg-light);
}

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

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

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.thanks-details {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.thanks-details p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.selected-service {
    color: var(--secondary-color);
    font-size: 20px;
}

.next-steps {
    margin: 60px 0;
}

.next-steps h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.thanks-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 140px 20px 80px;
    background: white;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-update {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .insight-container,
    .mission-grid,
    .contact-layout,
    .benefit-block {
        flex-direction: column;
    }

    .benefit-offset-right {
        flex-direction: column;
    }

    .problem-grid,
    .offerings-showcase,
    .testimonials-grid,
    .team-grid,
    .values-grid,
    .footer-content {
        flex-direction: column;
    }

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

    .section-heading,
    .offerings-heading {
        font-size: 32px;
    }

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

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

    .program-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .enrollment-form-wrapper {
        padding: 30px 20px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-heading {
        font-size: 28px;
    }

    .btn-primary,
    .btn-secondary,
    .cta-hero {
        padding: 14px 30px;
        font-size: 16px;
    }
}
