:root {
    --primary-color: #2c5aa0;
    --secondary-color: #1a3a6b;
    --accent-color: #e74c3c;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #777;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --warning-color: #f39c12;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    display: none;
    animation: slideUp 0.4s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background: #c0392b;
}

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

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

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

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

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-medium);
    transition: color 0.3s ease;
}

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

.hero-immersive {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 58, 107, 0.85), rgba(44, 90, 160, 0.75));
    z-index: 2;
}

.hero-text {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.cta-hero:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5);
    color: white;
}

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

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

.eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.story-hook h2 {
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.story-hook p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-medium);
}

.inline-visual {
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.vulnerability-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vuln-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.vuln-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.vuln-item h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.vuln-item p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.split-visual {
    flex: 1;
}

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

.insight-reveal {
    padding: 120px 20px;
    background: var(--secondary-color);
    color: white;
}

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

.section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.insight-reveal h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
}

.insight-grid {
    display: flex;
    gap: 40px;
}

.insight-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

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

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

.story-image {
    flex: 1;
}

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-medium);
}

.cta-inline {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

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

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

.trust-builder h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.trust-builder p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-medium);
}

.testimonial-inline {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.testimonial-card-featured {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.author-role {
    opacity: 0.85;
    font-size: 0.95rem;
}

.methodology-breakdown {
    padding: 120px 20px;
    background: var(--bg-white);
}

.methodology-breakdown h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 70px;
    color: var(--text-dark);
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.method-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
    flex-shrink: 0;
    width: 100px;
}

.method-step h3 {
    font-size: 1.7rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.method-step p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

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

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

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

.testimonial-card {
    flex: 1;
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-medium);
    font-style: italic;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-dark);
    font-style: normal;
}

.benefit-cascade {
    padding: 100px 20px;
    background: var(--bg-white);
}

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

.cascade-container h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.benefit-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-item {
    padding-left: 40px;
    border-left: 4px solid var(--accent-color);
}

.benefit-item h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.benefit-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

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

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

.course-reveal h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.course-card {
    flex: 1 1 calc(50% - 15px);
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.course-card.featured {
    border: 3px solid var(--accent-color);
}

.course-badge,
.course-level {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 12px;
}

.course-badge {
    background: var(--accent-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

.course-level {
    color: var(--primary-color);
}

.course-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.course-card > p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-medium);
}

.course-highlights {
    list-style: none;
    margin-bottom: 30px;
}

.course-highlights li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.course-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.course-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.course-duration {
    font-size: 0.9rem;
    color: var(--text-light);
}

.course-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

.select-course {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.urgency-element {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--warning-color), #e67e22);
}

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

.urgency-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.urgency-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.urgency-box p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-urgency {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--warning-color);
    font-weight: 700;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-urgency:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    color: var(--warning-color);
}

.enrollment-section {
    padding: 120px 20px;
    background: var(--bg-white);
}

.enrollment-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.enrollment-info {
    flex: 1;
}

.enrollment-info h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.enrollment-info > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-medium);
    line-height: 1.7;
}

.enrollment-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-check {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-check span {
    background: var(--success-color);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.9rem;
}

.benefit-check p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin: 0;
}

.enrollment-form {
    flex: 1;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.selected-course-display {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 2px solid var(--primary-color);
}

.selected-course-display.empty {
    border-color: var(--border-color);
}

.form-note {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    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: var(--primary-color);
}

.submit-enrollment {
    width: 100%;
    padding: 16px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-enrollment:hover:not(:disabled) {
    background: #c0392b;
    transform: translateY(-2px);
}

.submit-enrollment:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.final-cta {
    padding: 100px 20px;
    background: var(--secondary-color);
    color: white;
    text-align: center;
}

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

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

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-final {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color);
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

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

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

.footer-section {
    flex: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.7;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9998;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.sticky-cta-btn {
    display: block;
    padding: 16px 30px;
    background: var(--accent-color);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.5);
    color: white;
}

.page-header {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.header-content p {
    font-size: 1.25rem;
    opacity: 0.95;
}

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

.about-story h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.about-story p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-medium);
}

.about-story img {
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.mission-box,
.vision-box {
    flex: 1;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mission-box h2,
.vision-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.mission-box p,
.vision-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.values-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.values-section h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
}

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

.team-expertise h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.team-expertise p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-medium);
}

.team-expertise img {
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.numbers-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.number-stat {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.number-stat p {
    font-size: 1rem;
    opacity: 0.9;
}

.philosophy {
    padding: 100px 20px;
    background: var(--bg-white);
}

.philosophy h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.philosophy p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-medium);
}

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

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

.cta-box h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-box p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: var(--text-medium);
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.services-intro {
    padding: 60px 20px;
    background: var(--bg-white);
}

.services-intro h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-intro p {
    font-size: 1.15rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.course-catalog {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.course-item {
    background: white;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.course-item.featured-course {
    border: 3px solid var(--accent-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.course-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.course-level-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.course-level-badge.foundation {
    background: #3498db;
    color: white;
}

.course-level-badge.intermediate {
    background: #f39c12;
    color: white;
}

.course-level-badge.specialized,
.course-level-badge.advanced {
    background: #9b59b6;
    color: white;
}

.course-duration-badge {
    padding: 6px 14px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-medium);
}

.course-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.course-item > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-medium);
}

.course-curriculum {
    margin-bottom: 25px;
}

.course-curriculum h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.course-curriculum ul {
    list-style: none;
}

.course-curriculum li {
    padding-left: 28px;
    margin-bottom: 10px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.course-curriculum li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.course-ideal {
    background: var(--bg-light);
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
}

.course-price-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.enroll-btn {
    padding: 14px 35px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.enrollment-process {
    padding: 80px 20px;
    background: var(--bg-white);
}

.enrollment-process h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.process-step {
    flex: 1;
    text-align: center;
}

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

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.contact-main {
    padding: 80px 20px;
    background: var(--bg-white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-text p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

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

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 5px;
}

.contact-note-box {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
}

.contact-note-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-note-box p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contact-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
}

.info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.info-box p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

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

.faq-contact h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

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

.legal-page {
    padding: 150px 20px 80px;
    background: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-medium);
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-medium);
}

.legal-content a {
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-hero {
    padding: 150px 20px 100px;
    background: var(--bg-light);
    min-height: 100vh;
}

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

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

.thanks-hero h1 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.thanks-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.enrollment-summary {
    background: white;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.enrollment-summary h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.summary-details p {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-medium);
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.step-item {
    flex: 1 1 calc(50% - 15px);
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.step-num {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-item p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.thanks-benefits {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-benefits h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item-thanks {
    display: flex;
    gap: 15px;
    align-items: center;
}

.benefit-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

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

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.thanks-support {
    text-align: center;
    font-size: 1rem;
    color: var(--text-medium);
}

.thanks-support a {
    font-weight: 600;
}

@media (max-width: 1024px) {
    .floating-nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
        border-radius: 20px;
        top: 10px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .split-container,
    .story-container,
    .enrollment-container,
    .contact-container {
        flex-direction: column;
    }

    .insight-grid,
    .testimonial-grid {
        flex-direction: column;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .numbers-container {
        flex-direction: column;
        gap: 30px;
    }

    .value-card,
    .step-item {
        flex: 1 1 100%;
    }

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

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

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

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

    .floating-nav {
        width: 90%;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .story-hook h2,
    .about-story h2,
    .trust-builder h2 {
        font-size: 1.8rem;
    }

    .split-text h2,
    .insight-reveal h2,
    .course-reveal h2 {
        font-size: 2rem;
    }

    .header-content h1 {
        font-size: 2.2rem;
    }

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

    .sticky-cta-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}
