/* ==========================================================================
   1. GLOBALS & SETUP
   - Variables (Design Tokens)
   - Reset & Base Styles
   - Accessibility Rules
   - Animations
   ========================================================================== */

/* --- 1.1 CSS Variables (Design Tokens) --- */
/* CSS variables moved to style.min.css to avoid duplication */

/* Focus-visible styles for interactive elements with polyfill support */
:root { --focus-ring: #0bb4aa; }

a[href]:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[role="button"]:focus-visible,
.btn:focus-visible,
.carousel-nav:focus-visible,
#scrollTop:focus-visible,
.skip-link:focus-visible,
#testimonials-wrapper:focus-visible,
.faq-question:focus-visible,
[data-focus-visible-added] {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Custom styles for About page */
.no-bullets {
    list-style: none;
    padding-left: 0;
}

.no-bullets li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Ensure carousel nav buttons are fully visible and accessible */
.testimonials-carousel { position: relative; overflow: visible; }
.testimonials-carousel .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
    border: 1px solid rgba(0,0,0,.08);
    z-index: 2;
}
.testimonials-carousel .carousel-nav.prev { left: 8px; }
.testimonials-carousel .carousel-nav.next { right: 8px; }
.testimonials-carousel .carousel-nav svg { pointer-events: none; }

/* Add side padding so content doesn't sit under the buttons */
.testimonials-carousel .testimonials-wrapper { padding-inline: 56px; }

/* Equalize testimonial card heights and layout */
.testimonials-grid { align-items: stretch; }
.testimonials-grid .testimonial { height: 100%; display: flex; flex-direction: column; }

/* Featured quote styling */
.testimonial-quote {
    position: relative;
    margin: 2rem 0;
    padding: 1.5rem 1.5rem 1.25rem 1.5rem;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid rgba(11, 87, 208, 0.15);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    width: 70%;
    margin-left: auto;
    margin-right: 0;
	text-align:left !important;
}
.testimonial-quote::before {
    content: "";
    display: none !important;
}
.testimonial-quote::after {
    content: "";
    display: none !important;
}
.testimonial-quote em {
    display: block;
    font-style: italic;
    font-size: 1.125rem;
    color: #1b1b1b;
}
.testimonial-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    color: #555;
    font-weight: 600;
    text-align: right;
}
@media (max-width: 640px) {
    .testimonial-quote {
        padding: 1.25rem 1rem 1rem 1rem;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .testimonial-quote::before {
        display: none;
    }
    .testimonial-quote::after {
        display: none;
    }
}

/* Existing a11y styles */
.testimonials-carousel .carousel-nav:disabled { opacity: 0.5; cursor: not-allowed; }
.testimonials-carousel .carousel-nav:focus-visible { outline: 2px solid #0b57d0; outline-offset: 2px; }

@media (max-width: 640px) {
    .testimonials-carousel .testimonials-wrapper { padding-inline: 48px; }
    .testimonials-carousel .carousel-nav { width: 40px; height: 40px; }
    .testimonials-carousel .carousel-nav.prev { left: 6px; }
    .testimonials-carousel .carousel-nav.next { right: 6px; }
}

/* Testimonials Carousel Additional Styles */
.testimonials-carousel {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-carousel .testimonials-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary-dark) #f0f0f0;
    padding-bottom: 20px;
}

.testimonials-carousel .testimonials-wrapper::-webkit-scrollbar {
    height: 8px;
}

.testimonials-carousel .testimonials-wrapper::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.testimonials-carousel .testimonials-wrapper::-webkit-scrollbar-thumb {
    background: var(--color-primary-dark);
    border-radius: 10px;
}

.testimonials-carousel .testimonials-grid {
    display: flex;
    gap: 30px;
    padding: 10px;
    width: max-content;
}

.testimonials-carousel .testimonial {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    max-width: 380px;
}


@media (max-width: 1200px) {
    .carousel-nav.prev {
        left: 10px;
    }
    
    .carousel-nav.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel .testimonials-wrapper {
        padding-inline: 50px;
        scroll-snap-type: x mandatory;
    }
    .testimonials-carousel .testimonials-grid {
        gap: 20px;
        padding: 10px 0;
    }
    .testimonials-carousel .testimonial {
        flex: 0 0 calc(100% - 100px);
        min-width: 280px;
        max-width: 380px;
        scroll-snap-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel .testimonials-wrapper {
        padding-inline: 45px;
    }
    .testimonials-carousel .testimonial {
        flex: 0 0 calc(100% - 90px);
        min-width: 260px;
        max-width: 340px;
    }
    .testimonials-carousel .carousel-nav {
        width: 36px;
        height: 36px;
    }
    .testimonials-carousel .carousel-nav.prev { left: 4px; }
    .testimonials-carousel .carousel-nav.next { right: 4px; }
}

@media (max-width: 360px) {
    .testimonials-carousel .testimonials-wrapper {
        padding-inline: 40px;
    }
    .testimonials-carousel .testimonial {
        flex: 0 0 calc(100% - 80px);
        min-width: 240px;
        max-width: 300px;
    }
    .testimonials-carousel .carousel-nav {
        width: 32px;
        height: 32px;
    }
    .testimonials-carousel .carousel-nav svg {
        width: 18px;
        height: 18px;
    }
    .testimonials-carousel .carousel-nav.prev { left: 2px; }
    .testimonials-carousel .carousel-nav.next { right: 2px; }
}

/* Contact Inline Style */
.contact-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    font-size: 1.05rem;
}

.contact-inline .contact-item {
    display: inline-block;
}

.contact-inline .contact-separator {
    color: #999;
    font-size: 1.2rem;
}

/* About page: ensure icon and text are in one line inside each contact item */
.about_us_contact-wrapper.contact-info .contact-inline .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.about_us_contact-wrapper.contact-info .contact-inline .contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0; /* override generic .info-item svg */
    margin-right: 0; /* spacing handled by gap */
    display: inline-block;
    align-self: center;
	margin-left:5px;
}

.about_us_contact-wrapper.contact-info .contact-inline {
    gap: 16px;
    row-gap: 8px; /* better wrap spacing */
}

.about_us_contact-wrapper.contact-info .contact-inline .contact-separator {
    align-self: center;
    margin: 0 6px;
    line-height: 1;
}

.about_us_contact-wrapper.contact-info .contact-inline .contact-item strong,
.about_us_contact-wrapper.contact-info .contact-inline .contact-item a {
    display: inline;
}

.about_us_contact-wrapper.contact-info .contact-inline .contact-item strong { margin-right: 4px; }

/* Avoid awkward breaks in short contact labels */
.about_us_contact-wrapper.contact-info .contact-inline .contact-item a { white-space: nowrap; }

@media (max-width: 768px) {
    .contact-inline {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-inline .contact-separator {
        display: none;
    }
}


/* --- 1.2 Reset and Base Settings --- */
/* Moved to style.min.css */

/* Body styles moved to style.min.css */

/* Text hyphenation for better readability on small screens */
.section-intro, .timeline-content p, .trust-item p, .result-item p {
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* FAQ answers without hyphenation to prevent text reflow */
.faq-answer p {
    hyphens: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    word-break: normal;
    overflow-wrap: break-word;
}

.page-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-x: clip; /* Prevents horizontal scroll */
    -webkit-overflow-scrolling: touch;
}

/* --- 1.3 Accessibility --- */
.skip-link {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    background: #667eea;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 0 0 8px 0;
    font-weight: 700;
    z-index: 10000;
}

/* Responsive helper for hero-subtext: force break on small screens */
@media (max-width: 640px) {
    .mobile-block { display: block; }
}

/* Respect users' reduced motion preferences for counters/slider */
@media (prefers-reduced-motion: reduce) {
    html:focus-within { scroll-behavior: auto !important; }
    html, body { scroll-behavior: auto !important; }

    /* Disable transitions/animations in trust indicators and related elements */
    .trust-indicators *, .indicators-grid, .indicator-item, .indicators-wrapper, .indicator-dot, .indicator-number {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    /* Show final counter values statically */
    .indicator-number { position: relative; color: transparent; }
    .indicator-number::after {
        content: attr(data-target) attr(data-suffix);
        position: absolute;
        inset: 0;
        color: inherit;
    }

    /* Prevent carousel snapping if used */
    .indicators-grid-container { scroll-snap-type: none !important; }
}

.skip-link:focus {
    position: fixed;
    left: 0;
    top: 0;
    width: auto;
    height: auto;
}

/* Focus styles moved to style.min.css */

/* prefers-reduced-motion styles moved to style.min.css */

/* --- 1.4 Animations --- */
/* Animation keyframes moved to style.min.css */

/* ==========================================================================
   2. LAYOUT & UTILITIES
   ========================================================================== */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
	z-index:1;
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
}

/* section styles moved to style.min.css */

section.light-section {
    background-color: var(--color-light-bg);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    z-index: 2;
}

section#anmeldung {
    padding: 80px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.04), 0 2px 10px rgba(0, 0, 0, 0.04);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-size: 1.1rem;
}

.section-highlight {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary-dark); /* Better contrast */
    letter-spacing: 0.3px;
    position: relative;
    display: inline-block;
    padding: 12px 35px;
    background: transparent;
    border: 1px solid var(--color-secondary);
    border-radius: 0;
    animation: sectionHighlightPulse 2s ease-in-out infinite;
    white-space: nowrap;
    line-height: 1.4;
    transition: all 0.3s ease;
    max-width: calc(100vw - 40px);
    box-sizing: border-box;
}

.section-highlight svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    margin-top: -2px;
}

.highlight-wrapper {
    text-align: center;
    margin: 0 auto;
}

.check-text {
    margin: 60px auto 0 auto;
    text-align: center;
}

.check-text svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    margin-top: -3px;
    color: var(--color-primary-dark); /* Better contrast */
}

.bildung-break { display: none; }

/* --- Layout & Utilities: Responsive --- */
@media (max-width: 768px) {
    section#anmeldung { padding: 40px 0; }
    .container { padding: 0 10px; }
    .section-intro { font-size: 1rem; margin-bottom: 40px; }
    .section-highlight { font-size: 1.15rem; padding: 10px 25px; white-space: normal; line-height: 1.3; }
}

@media (max-width: 646px) {
    .bildung-break { display: block; }
}

@media (max-width: 480px) {
    .section-highlight { font-size: 1.05rem; padding: 8px 15px; }
    .section-highlight svg { width: 22px; height: 22px; }
}

@media (max-width: 375px) {
    .container { padding: 0 15px; }
}

@media (max-width: 320px) {
    .container { padding: 0 12px; }
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
/* Base h1, h2, h3 styles moved to style.min.css */
/* General link styles in .main moved to style.min.css */

/* ==========================================================================
   4. COMPONENTS
   ========================================================================== */

/* --- 4.1 Buttons --- */
/* Base .btn styles moved to style.min.css */
/* Additional button variants below */
@media (max-width: 768px) {
    button, .faq-question { min-height: 44px; }
}
@media (max-width: 320px) {
    .btn { font-size: 0.85rem; padding: 10px 12px; }
}


/* --- 4.2 Hero Section --- */
.hero {
    position: relative;
    text-align: center;
    padding: 150px 0;
    color: var(--color-white);
    background-size: cover;
    background-position: center;
    background-color: #2c3e50; /* Fallback color */
    background-image: url("../../images/sea_3_uwg61g_c_scale,w_300.webp?v=1");
    transition: background-image 0.6s ease-in-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.no-webp .hero {
    background-image: url("../../images/sea_3_y39nel_c_scale,w_300.png?v=1");
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(11, 180, 170, 0.7));
    z-index: 1;
    opacity: .3;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.8), 0 4px 12px rgba(0,0,0,0.5), 0 8px 20px rgba(0,0,0,0.3);
    font-size: 1.4rem;
    font-weight: bold;
    opacity: 0.95;
    max-width: 750px;
    margin: 25px auto 40px auto;
    letter-spacing: 0.5px;
    line-height: 1.6;
	backdrop-filter: blur(1px);
}

.hero-title-break { display: inline; }
.into-title-break { display: none; }
.hero .hero-subline { display: inline; }

.hero-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.hero-cta-wrapper .btn {
    width: auto;
    min-width: 300px;
    max-width: 375px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add text shadow to alternative button in hero */
.hero-cta-wrapper .btn-outline.btn-white-border {
    text-shadow: 0 1px 3px rgba(0,0,0,0.8), 0 2px 8px rgba(0,0,0,0.5);
}

.hero-subtext {
    font-style: italic;
    color: var(--color-white);
    text-shadow: 0 1px 3px rgba(0,0,0,0.8), 0 2px 8px rgba(0,0,0,0.5);
    font-size: 1rem;
    opacity: 0.95; /* Increased opacity for better contrast */
    margin-top: 20px;
}

/* --- Hero Section: Landing-specific backgrounds --- */
/* Hero 1 Images (Sea theme) */
.hero1 {
    background-image: url("../../images/sea_3_uwg61g_c_scale,w_300.webp?v=1");
}
.no-webp .hero1 {
    background-image: url("../../images/sea_3_y39nel_c_scale,w_300.png?v=1");
}

/* Hero 2 Images (City theme) */
.hero2 {
	padding-bottom: 50px !important;
    background-image: url("../../images/sea_3_city_w_2_300.webp?v=1") !important;
    background-position: center 25% !important; /* Show upper portion with buildings */
}
.no-webp .hero2 {
    background-image: url("../../images/sea_3_city_w_2_300.png?v=1") !important;
}
.hero2::before {
    background: linear-gradient(45deg, rgba(11, 180, 170, 0.7)) !important;
}

/* Hero About (Bridge theme) */
.hero.hero-about {
    background-image: url("../../images/sea_3_bridge_w_300.webp?v=1") !important;
}
.no-webp .hero.hero-about {
    background-image: url("../../images/sea_3_bridge_w_300.png?v=1") !important;
}

/* --- Hero Section: Responsive --- */
@media (min-width: 480px) {
    /* Hero 1 */
    .hero1 { background-image: url("../../images/sea_3_uwg61g_c_scale,w_694.webp"); }
    .no-webp .hero1 { background-image: url("../../images/sea_3_y39nel_c_scale,w_670.png"); }
    
    /* Hero 2 */
    .hero2 { background-image: url("../../images/sea_3_city_w_694.webp") !important; }
    .no-webp .hero2 { background-image: url("../../images/sea_3_city_w_670.png") !important; }
    
    /* Hero About (Bridge) */
    .hero.hero-about { background-image: url("../../images/sea_3_bridge_w_694.webp") !important; }
    .no-webp .hero.hero-about { background-image: url("../../images/sea_3_bridge_w_670.png") !important; }
    
    /* Default for other pages */
    .hero { background-image: url("../../images/sea_3_uwg61g_c_scale,w_694.webp"); }
    .no-webp .hero { background-image: url("../../images/sea_3_y39nel_c_scale,w_670.png"); }
    
    .cta-button-wrapper a { min-width: 350px; }
}
@media (min-width: 768px) {
    /* Hero 1 */
    .hero1 { background-image: url("../../images/sea_3_uwg61g_c_scale,w_994.webp"); }
    .no-webp .hero1 { background-image: url("../../images/sea_3_y39nel_c_scale,w_917.png"); }
    
    /* Hero 2 */
    .hero2 { background-image: url("../../images/sea_3_city_w_994.webp") !important; }
    .no-webp .hero2 { background-image: url("../../images/sea_3_city_w_917.png") !important; }
    
    /* Hero About (Bridge) */
    .hero.hero-about { background-image: url("../../images/sea_3_bridge_w_994.webp") !important; }
    .no-webp .hero.hero-about { background-image: url("../../images/sea_3_bridge_w_917.png") !important; }
    
    /* Default */
    .hero { background-image: url("../../images/sea_3_uwg61g_c_scale,w_994.webp"); }
    .no-webp .hero { background-image: url("../../images/sea_3_y39nel_c_scale,w_917.png"); }
}
@media (min-width: 1024px) {
    /* Hero 1 */
    .hero1 { background-image: url("../../images/sea_3_uwg61g_c_scale,w_1270.webp"); }
    .no-webp .hero1 { background-image: url("../../images/sea_3_y39nel_c_scale,w_1275.png"); }
    
    /* Hero 2 */
    .hero2 { background-image: url("../../images/sea_3_city_w_1270.webp") !important; }
    .no-webp .hero2 { background-image: url("../../images/sea_3_city_w_1275.png") !important; }
    
    /* Hero About (Bridge) */
    .hero.hero-about { background-image: url("../../images/sea_3_bridge_w_1270.webp") !important; }
    .no-webp .hero.hero-about { background-image: url("../../images/sea_3_bridge_w_1275.png") !important; }
    
    /* Default */
    .hero { background-image: url("../../images/sea_3_uwg61g_c_scale,w_1270.webp"); }
    .no-webp .hero { background-image: url("../../images/sea_3_y39nel_c_scale,w_1275.png"); }
}
@media (min-width: 1400px) {
    /* Hero 1 */
    .hero1 { background-image: url("../../images/sea_3_uwg61g_c_scale,w_1408.webp"); }
    .no-webp .hero1 { background-image: url("../../images/sea_3_y39nel_c_scale,w_1408.png"); }
    
    /* Hero 2 */
    .hero2 { background-image: url("../../images/sea_3_city_w_1408.webp") !important; }
    .no-webp .hero2 { background-image: url("../../images/sea_3_city_w_1408.png") !important; }
    
    /* Hero About (Bridge) */
    .hero.hero-about { background-image: url("../../images/sea_3_bridge_w_1408.webp") !important; }
    .no-webp .hero.hero-about { background-image: url("../../images/sea_3_bridge_w_1408.png") !important; }
    
    /* Default */
    .hero { background-image: url("../../images/sea_3_uwg61g_c_scale,w_1408.webp"); }
    .no-webp .hero { background-image: url("../../images/sea_3_y39nel_c_scale,w_1408.png"); }
}

@media (max-width: 812px) and (orientation: landscape) {
    .hero { padding: 85px 0 30px !important; }
    .hero h2 { font-size: 1rem !important; margin-bottom: 20px !important; }
    .hero-cta-wrapper { margin: 20px 0 !important; }
    .hero-subtext { font-size: 0.9rem !important; margin-top: 15px !important; }
}
@media (max-height: 450px) and (orientation: landscape) {
    .hero { padding: 85px 0 20px !important; }
    .hero h2 { font-size: 0.9rem !important; margin-bottom: 15px !important; }
    .hero-cta-wrapper { gap: 10px !important; margin: 15px 0 !important; }
}

@media (max-height: 1180px)
{
	.auth-section-no-hero {
        padding-top: 5vh  !important;
    }
}

@media (max-width: 768px) {
    .hero { padding: 12vh 0; }
    .hero h2 { font-size: 1.1rem; line-height: 1.5; margin: 25px auto 30px auto; letter-spacing: unset; }
    .hero-cta-wrapper { flex-direction: column; gap: 12px; margin: 20px 0; }
    .hero-cta-wrapper .btn,
    .hero-cta-wrapper .btn-outline {
        width: 100%;
        max-width: min(330px, calc(100vw - 40px));
        min-height: 60px;
		margin-top: 10px;
    }
    .hero-subtext { font-size: 0.9rem; margin-top: 5px; }
}

@media (max-width: 580px) {
    .hero-title-break { display: block; margin-top: 10px; }
}
@media (min-width: 580px) {
    .into-title-break { display: block; margin-top: 10px; }
}
@media (max-width: 549px) {
    .hero .hero-subline { display: block; }
}

@media (max-width: 375px) {
    .hero h2 { font-size: 1rem; }
    .hero-cta-wrapper .btn { font-size: 0.95rem; padding: 14px 20px; }
}

@media (max-width: 320px) {
    .hero { padding: 40px 0; }
}


/* --- 4.3 Trust Indicators (Counters) --- */
.trust-indicators {
    padding: 60px 0;
    background: var(--color-white);
    border-bottom: 1px solid #eef2f5;
    position: relative;
    z-index: 5;
}

.indicators-wrapper {
    position: relative;
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.indicators-nav,
.indicators-dots {
    display: none;
}

.indicator-item {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.indicator-item:hover {
    transform: translateY(-3px);
}
.indicator-item:hover svg {
    color: #0a9d93;
}
.indicator-item > svg {
    color: var(--color-primary);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.indicator-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary-dark); /* Better contrast */
    line-height: 1;
    margin-bottom: 10px;
    height: 2.5rem; /* Fixed height for all numbers */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Single-digit styling removed - all numbers should have the same style */

.indicator-label {
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.2;
}

/* --- Trust Indicators: Responsive --- */
@media (min-width: 769px) {
    .indicators-grid { 
        transform: none !important; /* Reset any transform on desktop */
    }
}

@media (max-width: 768px) {
    .trust-indicators { 
        padding-top: 60px; 
		padding-bottom: 20px;
		padding-left: 0px;
		padding-right: 0px;
        overflow: visible;
    }
    
    .indicators-wrapper {
        position: relative;
        margin: 0 auto;
        padding: 0 60px; /* Space for buttons */
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: calc(100% - 40px);
    }
    
    .indicators-grid-container {
        width: 100%;
        overflow-x: hidden;
        overflow-y: visible;
        position: relative;
    }
    
    .indicators-grid { 
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 15px;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        align-items: stretch; /* Changed from flex-start to stretch */
        will-change: transform;
        width: 100%;
        overflow: visible;
        padding: 0;
        grid-template-columns: none; /* Override grid */
    }
    
    .indicator-item {
        flex: 0 0 calc(50% - 7.5px);
        min-width: calc(50% - 7.5px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start; /* Changed from center to flex-start */
        padding: 15px 10px;
        text-align: center;
        overflow: visible;
        min-height: 120px; /* Add minimum height */
    }
    
    .indicator-item svg { 
        width: 36px; 
        height: 36px; 
        margin: 0 auto;
        display: block;
    }
    .indicator-number { 
        font-size: 2rem;
        height: 2rem; /* Fixed height */
    }
    .indicator-label { 
        font-size: 0.9rem; 
        white-space: nowrap;
        overflow: visible;
        text-align: center;
    }
    
    .indicators-nav {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: var(--border-radius);
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        box-shadow: 
            0 4px 12px rgba(11, 180, 170, 0.15),
            0 2px 4px rgba(0, 0, 0, 0.08),
            inset 0 1px 1px rgba(255, 255, 255, 0.5);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        overflow: hidden;
    }
    
    .indicators-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, 
            rgba(11, 180, 170, 0) 0%, 
            rgba(11, 180, 170, 0.1) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    
    .indicators-nav:hover {
        background: linear-gradient(135deg, 
            rgba(11, 180, 170, 0.1) 0%, 
            rgba(11, 180, 170, 0.05) 100%);
        box-shadow: 
            0 8px 20px rgba(11, 180, 170, 0.25),
            0 4px 8px rgba(0, 0, 0, 0.1),
            inset 0 1px 1px rgba(255, 255, 255, 0.7);
        transform: translateY(-50%) scale(1.15);
        border-color: rgba(11, 180, 170, 0.3);
    }
    
    .indicators-nav:hover::before {
        opacity: 1;
    }
    
    .indicators-nav:active {
        transform: translateY(-50%) scale(1.05);
        box-shadow: 
            0 2px 8px rgba(11, 180, 170, 0.2),
            0 1px 2px rgba(0, 0, 0, 0.1),
            inset 0 1px 1px rgba(255, 255, 255, 0.3);
        transition: transform 0.1s ease, box-shadow 0.1s ease;
    }
    
    .indicators-nav.prev { left: 0; }
    .indicators-nav.next { right: 0; }
    
    .indicators-nav svg {
        width: 20px;
        height: 20px;
        color: var(--color-primary);
        position: relative;
        z-index: 1;
        transition: all 0.4s ease;
    }
    
    .indicators-nav:hover svg {
        color: #0a9d93;
        transform: scale(1.1);
    }
    
    .indicators-nav.prev:hover svg { transform: translateX(-2px) scale(1.1); }
    .indicators-nav.next:hover svg { transform: translateX(2px) scale(1.1); }
    
    .indicators-nav.disabled {
        opacity: 0.3;
        cursor: not-allowed;
        pointer-events: none;
        background: rgba(200, 200, 200, 0.3);
        box-shadow: none;
        transition: opacity 0.5s ease;
    }
    
    .indicators-nav.disabled svg { color: #999; }
    
    .indicators-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
        padding: 8px 16px;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border-radius: 20px;
        display: inline-flex;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    button.indicator-dot {
        width: 8px !important;
        height: 8px !important;
        border-radius: 50% !important;
        background: linear-gradient(135deg, #d0d0d0 0%, #b0b0b0 100%) !important;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        cursor: pointer;
        position: relative;
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
        box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
        /* Reset button styles */
        padding: 0 !important;
        margin: 0;
        font-size: 0;
        line-height: 0;
        outline: none;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        text-indent: -9999px;
        overflow: hidden;
        vertical-align: middle;
        display: inline-block;
        box-sizing: border-box;
        min-width: 8px !important;
        max-width: 8px !important;
        min-height: 8px !important;
        max-height: 8px !important;
    }
    
    button.indicator-dot:focus-visible {
        outline: 2px solid var(--color-primary);
        outline-offset: 2px;
    }
    
    .indicator-dot::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(11, 180, 170, 0.3) 0%, transparent 70%);
        transition: transform 0.4s ease;
    }
    
    button.indicator-dot:hover {
        transform: scale(1.3);
        background: linear-gradient(135deg, #a0a0a0 0%, #808080 100%) !important;
        box-shadow: 
            inset 0 1px 2px rgba(0, 0, 0, 0.15),
            0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    button.indicator-dot.active {
        background: linear-gradient(135deg, var(--color-primary) 0%, #0a9d93 100%) !important;
        transform: scale(1.2);
        box-shadow: 
            0 0 12px rgba(11, 180, 170, 0.4),
            inset 0 1px 1px rgba(255, 255, 255, 0.3);
        border-color: rgba(11, 180, 170, 0.3) !important;
    }
    
    .indicator-dot.active::after {
        transform: translate(-50%, -50%) scale(1);
    }
    
    button.indicator-dot:active {
        transform: scale(1);
        transition: transform 0.1s ease;
    }
}

@media (min-width: 411px) and (max-width: 480px) {
    .indicators-wrapper { padding: 0 45px; }
    .indicators-nav { width: 35px; height: 35px; }
    .indicators-nav svg { width: 18px; height: 18px; }
    .indicator-item { padding: 12px 8px; }
    .indicator-item svg { width: 32px; height: 32px; }
    .indicator-number { 
        font-size: 1.7rem; 
        margin-bottom: 5px;
        height: 1.7rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .indicator-label { font-size: 0.75rem; }
}

@media (max-width: 480px) {
    .indicator-item { 
        padding: 10px 5px;
        min-height: 110px; /* Ensure consistent height */
    }
    .indicator-item svg { width: 30px; height: 30px; }
    .indicator-number { 
        font-size: 1.6rem;
        height: 1.6rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .indicator-label { 
        font-size: 0.8rem;
        min-height: 2em; /* Reserve space for text */
    }
}

@media (max-width: 410px) {
    .trust-indicators { padding: 28px 0; }
    .indicator-item { 
        padding: 7px 5px; 
        min-height: 95px; /* Consistent height */
    }
    .indicator-item > svg { width: 25px; height: 25px; margin-bottom: 10px; }
    .indicator-number { 
        font-size: 1.7rem; 
        margin-bottom: 7px;
        height: 1.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .indicator-label { 
        font-size: 0.71rem;
        min-height: 1.8em; /* Reserve space */
    }
}

/* Very small screens - keep 2 indicators but adjust spacing */
@media (max-width: 380px) {
    .indicator-item {
        flex: 0 0 calc(50% - 5px);
        min-width: calc(50% - 5px);
        padding: 10px 3px;
        min-height: 100px; /* Ensure minimum height on small screens */
    }
    
    .indicator-label { 
        font-size: 0.6rem;
        line-height: 1.1;
        word-break: break-word;
        hyphens: auto;
        min-height: 1.8em; /* Reserve space to prevent jumping */
    }
    
    .indicator-number {
        font-size: 1.3rem;
        margin-bottom: 5px;
        height: 1.3rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .indicator-item > svg {
        width: 22px;
        height: 22px;
        margin-bottom: 8px;
    }
    
    .indicators-grid {
        gap: 10px;
        align-items: stretch; /* Ensure equal heights */
    }
    
    /* Ensure all indicators have equal spacing in carousel */
    .indicators-grid .indicator-item {
        margin-left: 0;
        margin-right: 0;
    }
}


/* --- 4.4 Roadmap / Timeline --- */
.timeline {
    position: relative;
    max-width: 820px;
    margin: 50px auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--color-primary);
    opacity: 0.2;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}
.timeline-item {
    padding: 10px 30px;
    position: relative;
    background-color: inherit;
    width: 50%;
}
.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -14.5px;
    background-color: var(--color-white);
    border: 4px solid var(--color-primary);
    top: 30px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    padding: 25px 35px;
    background-color: var(--color-white);
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35), 0 15px 25px rgba(0,0,0,0.25), 0 5px 10px rgba(0,0,0,0.2), 0 1px 4px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}
.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.4), 0 20px 30px rgba(0,0,0,0.3), 0 10px 15px rgba(0,0,0,0.25), 0 3px 6px rgba(0,0,0,0.2);
}
.timeline-content h3 {
    color: var(--color-primary-dark); /* Better contrast */
    font-size: 1.35rem;
    margin-top: 35px;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    text-align: center;
    line-height: 1.3;
}
.timeline-content:hover h3 { color: #077f76; } /* Better contrast on hover */

.module-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0bb4aa 0%, #0a9d93 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(11,180,170,0.3);
    z-index: 3;
    transition: all 0.3s ease;
}
.module-icon svg { color: white; width: 30px; height: 30px; }
.timeline-content:hover .module-icon {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 12px 25px rgba(11,180,170,0.4);
}
.module-time-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(11,180,170,0.15);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.70rem;
    color: var(--color-primary);
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.module-time-icon svg { width: 14px; height: 14px; stroke-width: 2.5; color: var(--color-primary-dark); } /* Better contrast */
.module-duration {
    font-size: 0.9rem;
    color: #7a8590;
    font-weight: 600;
    margin: 0 0 15px 0;
    font-style: italic;
}
.timeline-content p { font-size: 1rem; margin-bottom: 10px; }
.timeline-content p:last-child { margin-bottom: 0; }
.timeline-content p strong { color: var(--color-primary-dark); font-weight: 700; } /* Better contrast */
.lernerfolg {
    font-size: 0.95rem;
    margin: 20px 0 0 0;
    padding: 15px 0 0 0;
    border-top: 1px solid #eef2f5;
    color: var(--color-text);
    font-weight: 700;
}

/* --- Timeline: Responsive --- */
@media (max-width: 1024px) {
    .timeline::after { display: none; }
    .timeline-item { 
        width: 100%; 
        padding: 0; 
        margin-bottom: 36px;
    }
    .timeline-item::after { display: none; }
    .timeline-left, .timeline-right { 
        left: 0; 
        width: 100%; 
    }
    .timeline-content {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (min-width: 1025px) {
    .timeline-left { left: 0; }
    .timeline-right { left: 50%; }
    .timeline-right::after { 
        left: -10.5px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .timeline { margin: 30px auto; }
    .timeline-item, .timeline-right { margin-bottom: 31px; }
    .timeline-content {
        padding: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        margin: 0;
        max-width: none;
        width: 100%;
    }
    .timeline-content:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
    .timeline-content h3 { font-size: 1.3rem; margin-top: 35px; margin-bottom: 15px; }
    .module-icon { top: -20px; width: 50px; height: 50px; }
    .module-icon svg { width: 24px; height: 24px; }
    .module-time-icon { right: 15px; top: 10px; font-size: 0.7rem; padding: 4px 9px; }
    .timeline-content p { font-size: 0.95rem; line-height: 1.6; }
    .lernerfolg { font-size: 0.9rem; line-height: 1.6; margin-top: 15px; padding-top: 12px; }
}

@media (max-width: 375px) {
    .timeline-item { padding-left: 0; padding-right: 0; }
    .timeline-content { padding: 20px 12px; }
    .timeline-content h3 { font-size: 1.25rem; line-height: 1.35; margin-top: 30px; }
    .module-icon { width: 45px; height: 45px; top: -18px; }
    .module-icon svg { width: 22px; height: 22px; }
    .module-time-icon { padding: 3px 8px; font-size: 0.70rem; top: 8px; right: 10px; }
}

@media (max-width: 320px) {
    .timeline-content { padding: 20px 10px; }
    .timeline-content h3 { font-size: 1.05rem; }
}


/* --- 4.5 Results & Trust Sections --- */
.results-grid, .trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 25px;
    row-gap: 35px;
    align-items: stretch;
}
.trust-grid {
    margin-top: 50px;
}
.result-item, .trust-item, .course-item{
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.3s ease;
}

.course-item
{
	text-align:left;
}

.trust-item {
    background: #fafbfc;
    padding: 35px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.result-item:hover, .trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}
.result-item:hover h3, .trust-item:hover h3 {
    color: var(--color-primary);
}
.result-item .icon, .trust-icon {
    margin-bottom: 20px;
    color: var(--color-primary);
}
.trust-icon { display: flex; justify-content: center; margin-bottom: 25px; }
.trust-icon svg { width: 48px; height: 48px; }
.result-item h3, .trust-item h3 {
    font-size: 1.3rem;
    transition: color 0.3s ease;
}
.trust-item h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--color-heading); }
.trust-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    max-width: none;
    color: var(--color-text);
    flex-grow: 1;
}
.trust-item p strong { color: var(--color-primary); font-weight: 700; }

/* --- Results & Trust Sections: Responsive --- */
@media (min-width: 1200px) {
    .trust-grid, .results-grid { max-width: 1000px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
    .trust-grid, .results-grid { grid-template-columns: 1fr; }
    .trust-grid { gap: 25px; }
    .trust-item, .result-item { padding: 25px 20px; }
    .trust-item h3, .result-item h3 { font-size: 1.25rem; }
    .trust-item p, .result-item p { font-size: 0.95rem; line-height: 1.6; }
    .result-item .icon { margin-bottom: 15px; }
}


/* --- 4.6 Testimonials --- */
.testimonials-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 30px; 
}
/* Override for carousel */
.testimonials-carousel .testimonials-grid {
    display: flex;
    grid-template-columns: none;
}
.testimonial {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.testimonial p { font-style: italic; margin-bottom: 15px; flex-grow: 1; }
.testimonial-author { font-weight: 700; text-align: right; color: var(--color-primary-dark); margin-top: auto; } /* Better contrast */
img.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: block;
    object-fit: cover;
    border: 3px solid var(--color-primary);
}
.testimonial-image-1 { background-image: url('../../images/pic2.jpg'); }
.testimonial-image-2 { background-image: url('../../images/pic1.jpg'); }
.testimonial-image-3 { background-image: url('../../images/pic3.jpg'); }
.testimonial-stars { text-align: center; margin-bottom: 15px; font-size: 1.3rem; color: #FFD700; letter-spacing: 2px; }

/* --- Testimonials: Responsive --- */
@media (min-width: 769px) {
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .testimonial { padding: 25px 20px; }
    .testimonial p { font-size: 0.95rem; line-height: 1.6; }
}


/* --- 4.7 FAQ Section --- */
.faq-item {
    background: var(--color-white);
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: visible; /* Changed from hidden to allow focus outline */
    transition: box-shadow 0.3s ease;
}
.faq-item:hover { box-shadow: var(--shadow-medium); }
button.faq-question {
    width: 100%;
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color 0.3s ease;
    background: transparent;
    border: none;
    border-radius: var(--border-radius); /* Ensure question has rounded corners */
    font-family: inherit;
    font-size: inherit;
    text-align: left;
    color: inherit;
}
.faq-question:hover { background-color: rgba(11, 180, 170, 0.05); }
.faq-question:hover .faq-toggle { background-color: #0a9d93; }
/* Ensure focus is always visible for FAQ questions */
.faq-question:focus-visible,
.faq-item .faq-question:focus-visible,
.faq-item.active .faq-question:focus-visible {
    outline: 3px solid var(--focus-ring) !important;
    outline-offset: 3px !important;
    border-radius: var(--border-radius) !important;
}
.faq-question h3 { 
    margin: 0; 
    padding-right: 20px; 
    text-align: left;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    flex: 1;
    min-width: 0;
}
.faq-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer {
    padding: 0 25px 0 25px; /* Keep horizontal padding consistent */
    max-height: 0;
    overflow: hidden;
    border-radius: 0 0 var(--border-radius) var(--border-radius); /* Round bottom corners */
    transition: max-height 0.3s ease, padding-bottom 0.3s ease, padding-top 0.3s ease;
}
.faq-item.active .faq-answer { 
    padding: 5px 25px 25px 25px; /* Added 5px top padding when opened */
    max-height: 2000px; /* Increased to prevent text reflow */
}
.faq-answer p { margin-bottom: 15px; line-height: 1.6; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: var(--color-primary); font-weight: 700; }
.no-js .faq-answer { max-height: none; padding: 5px 25px 25px 25px; }
.no-js .faq-toggle { display: none; }

/* --- FAQ Section: Responsive --- */
@media (max-width: 768px) {
    .faq-item:first-child .faq-toggle { animation: pulseHint 2s ease-in-out 3; animation-delay: 1s; }
    .faq-question { padding: 20px 15px; min-height: 60px; }
    .faq-question h3 { 
        font-size: 1.1rem;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    .faq-toggle { width: 32px; height: 32px; }
    .faq-answer { 
        font-size: 0.95rem;
        padding: 0 15px 0 15px; /* Consistent horizontal padding */
    }
    .faq-item.active .faq-answer { 
        padding: 5px 15px 20px 15px; /* Added 5px top padding when opened */
    }
}

@media (hover: none) and (pointer: coarse) {
    .faq-question { min-height: 65px; padding: 22px 18px; -webkit-tap-highlight-color: rgba(11, 180, 170, 0.1); }
    .faq-question:active { background-color: rgba(11, 180, 170, 0.05); }
    .faq-toggle { width: 36px; height: 36px; }
}


/* --- 4.8 Upsell, Final CTA, Expert Intro --- */
.upsell, .course-item.active {
    background: var(--color-background);
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(11,180,170,0.25);
    margin: 0 auto;
    max-width: 1000px;
    border: 1px solid var(--color-primary);
}

.upsell
{
	padding: 60px 40px;
}

.course-item
{
	border-width:2px !important;
}

.course-item.active
{
	text-align:left;
}

.upsell h2 { margin: 0 auto 20px auto; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.upsell p { max-width: 700px; margin: 0 auto; text-shadow: 0 1px 3px rgba(0,0,0,0.15); }
.upsell strong { color: #000000; font-weight: 700; text-shadow: 0 1px 2px rgba(255,255,255,0.3); }

.final-cta { text-align: center; }
.final-cta h2 { margin-bottom: 20px; }
.final-cta .section-intro { margin-bottom: 35px; font-size: 1.05rem; }
.final-cta ul { list-style-type: none; padding: 0; margin: 20px auto; max-width: 500px; text-align: left; display: inline-block; }
.final-cta li { margin-bottom: 8px; padding-left: 30px; position: relative; font-size: 0.95rem; line-height: 1.5; }
.final-cta li:last-child { margin-bottom: 0; }
.final-cta li::before { content: '✓'; color: var(--color-primary); font-weight: 700; position: absolute; left: 0; top: 0; font-size: 1.1rem; }
.cta-button-wrapper { margin-top: 25px; text-align: center; }
.final-cta-subtext { margin: 18px auto 0 auto; color: #2c3e50; max-width: 700px; display: block; font-size: 0.95rem; }

.expert-intro-block {
    background: var(--color-white);
    padding: 40px 35px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    margin: 0 auto 50px auto;
    border: 2px solid rgba(11,180,170,0.1);
    position: relative;
    max-width: 1000px;
}
.expert-intro-block h3 { color: var(--color-heading); font-size: 1.5rem; margin-bottom: 20px; }
.expert-intro-block p { font-size: 1.05rem; line-height: 1.7; color: var(--color-text); margin: 0 auto 15px auto; max-width: 700px; }
.expert-intro-block p:last-child { margin-bottom: 0; }
.expert-intro-block strong { color: var(--color-primary); font-weight: 700; }
.expert-intro-block a { color: var(--color-primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 2px; font-weight: 600; }
.expert-intro-block a:hover { color: #0a9d93; }

/* --- Upsell, CTA, Expert: Responsive --- */
@media (max-width: 768px) {
    .upsell { padding: 40px 20px; }
    .upsell h2 { font-size: 1.8rem; }
    .upsell p { font-size: 0.95rem; }
    .final-cta ul { max-width: 100%; padding: 0 10px; }
    .final-cta li { font-size: 0.9rem; }
    .final-cta .btn { font-size: 1rem; padding: 16px 25px; max-width: 300px; width: 100%; }
    .final-cta-subtext { font-size: 0.85rem; }
    .expert-intro-block { padding: 30px 25px; margin-bottom: 40px; }
    .expert-intro-block h3 { font-size: 1.3rem; }
    .expert-intro-block p { font-size: 1rem; }
}

@media (max-width: 480px) {
    .expert-intro-block { padding: 25px 20px; }
    .expert-intro-block h3 { font-size: 1.2rem; }
    .expert-intro-block p { font-size: 0.95rem; }
}


/* --- 4.9 Scroll to Top Button --- */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-medium);
}
.scroll-top:hover { background: #0a9d93; transform: translateY(-3px); }
.scroll-top:focus-visible { outline: 3px solid var(--color-white); outline-offset: 3px; }
.scroll-top.visible { opacity: 1; visibility: visible; }

/* --- Scroll to Top: Responsive --- */
@media (max-width: 768px) {
    .scroll-top { bottom: 30px; right: 15px; width: 44px; height: 44px; }
}

@media (max-width: 320px) {
    .scroll-top { width: 40px; height: 40px; right: 10px; }
}

/* ==========================================================================
   5. GLOBAL RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 320px) {
    body { font-size: 15px; }
    * { word-wrap: break-word; overflow-wrap: break-word; }
}

/* ==========================================================================
   6. AUTH PAGE STYLES - Based on Landing-1 Design System
   ========================================================================== */

/* Auth Page Container */
.auth-page-wrapper {
    font-family: 'Nunito Sans', sans-serif;
    background-color: background: var(--color-light-bg);
    min-height: 100vh;
}

/* Hero Section for Auth - REMOVED - Auth page no longer uses hero section */

/* Auth Section */
.auth-section {
    padding: 60px 0;
    background-color: #F5F7FA;
}

.auth-section-no-hero {
    padding:15vh 0 60px 0;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
}

.auth-section .container {
    width: 580px;
    margin: 0 auto;
}

/* Auth Container */
.auth-container {
    background: white;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

/* Auth Main Title (H1) */
.auth-main-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--color-text) !important;
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.2;
	text-shadow: none !important;
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
}

.tab-button {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    color: #999;
    position: relative;
    transition: color 0.3s ease;
    font-family: 'Nunito Sans', sans-serif;
}

.tab-button:hover {
    color: #666;
}

.tab-button.active {
    color: #0bb4aa;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #0bb4aa;
}

/* Form Panels */
.form-panel {
    display: none;
}

.form-panel.active {
    display: block;
}

.form-panel p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
}

.form-intro {
    text-align: center;
    margin-bottom: 25px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 10px;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Nunito Sans', sans-serif;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-group input[type="email"]:hover {
    border-color: #ccc;
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: #0bb4aa;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(11, 180, 170, 0.1);
}

/* Course Selection */
.course-selection {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.course-selection-first {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.course-selection h4 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: left;
    font-size: 1.05rem;
}

/* Email Section */
.email-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.email-section h4 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: left;
    font-size: 1.05rem;
}

.email-section .form-group {
    margin-bottom: 0;
}

.email-section input[type="email"] {
    background-color: white;
    border: 2px solid #0bb4aa;
}

/* Form Intro */
.form-intro {
    text-align: center;
    margin-bottom: 25px;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 600;
}

.course-selection {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.course-option {
    display: flex;
    align-items: center;
    background: #f8fafc;
    padding: 18px 20px;
    border-radius: 10px;
    border: 2px solid #e8ecef;
    margin-bottom: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.course-option:hover {
    border-color: #b8d4d2;
    background-color: #f0f9f8;
    box-shadow: 0 4px 12px rgba(11, 180, 170, 0.15);
}

.course-option input[type="radio"] {
    display: none;
}

.course-option.selected {
    border-color: #0bb4aa;
    background: var(--color-background);
    box-shadow: 0 2px 10px rgba(11, 180, 170, 0.15);
}

.course-option.selected::before {
    content: '✓';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #0bb4aa;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Option Content */
.option-content {
    display: flex;
    align-items: center;
    width: calc(100% - 40px); /* Reserve space for checkmark */
    margin-right: 40px;
}

.option-content .text {
    flex: 1;
}

.option-content .text strong,
.option-content .text span {
    display: inline;
}

.option-content .icon {
    margin-right: 15px;
    color: #0bb4aa;
    flex-shrink: 0;
    opacity: 0.8;
}

.course-option:hover .option-content .icon {
    opacity: 1;
}

.course-option.selected .option-content .icon {
    opacity: 1;
    color: #0d8a82;
}

.option-content .text strong {
    display: block;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.option-content .text span {
    display: block;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Auth Button */
.auth-button {
    width: 100%;
    padding: 16px;
    margin-top: 30px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Nunito Sans', sans-serif;
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.auth-button:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.auth-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.auth-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

/* Message Area */
#message-area {
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: center;
    display: none;
    font-weight: 600;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#message-area.error {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

#message-area.success {
    background-color: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

/* Trust Badge */
.auth-trust-badge {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.auth-trust-badge p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.auth-trust-badge .trust-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.auth-trust-badge .trust-icons span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #999;
    font-size: 0.85rem;
}

.auth-trust-badge .trust-icons svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

/* Auth Mobile Responsive */
@media (max-width: 768px) {
    .auth-section-no-hero {
        padding: 5vh 20px 30px 20px;
        min-height: 100vh;
    }
    
    .auth-section .container {
        max-width: 100%;
        padding: 0;
    }
    
    .auth-container {
        padding: 25px 20px;
    }
    
    .auth-main-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .auth-tabs {
        margin-bottom: 20px;
    }
    
    .tab-button {
        font-size: 0.95rem;
        padding: 10px;
    }
    
    .form-panel p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .course-selection {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .course-selection-first {
        margin-top: 0;
        padding-top: 0;
    }
    
    .course-selection h4 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .email-section {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .email-section h4 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .form-intro {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .course-option {
        padding: 12px;
    }
    
    .option-content .icon svg {
        width: 28px;
        height: 28px;
    }
    
    .option-content .text strong {
        font-size: 0.95rem;
        display: inline;
        margin-right: 5px;
    }
    
    .option-content .text strong::after {
        content: ": ";
        display: inline;
    }
    
    .option-content .text span {
        font-size: 0.8rem;
        display: inline;
    }
    
    .auth-button {
        padding: 12px;
        font-size: 1rem;
        margin-top: 20px;
    }
    
    .auth-trust-badge {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .auth-trust-badge p {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .auth-trust-badge .trust-icons span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {

	.course-option.selected::before {
		right: 10px;
		font-size: 1rem;
	}

    .auth-section-no-hero {
        padding: 15px 15px 20px 15px;
        min-height: 80vh;
    }
    
    .auth-container {
        padding: 20px 15px;
    }
    
    .auth-main-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .auth-tabs {
        margin-bottom: 15px;
    }
    
    .tab-button {
        font-size: 0.9rem;
        padding: 8px;
    }
    
    .form-panel p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .form-group input[type="email"] {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .course-selection {
        margin-top: 15px;
        padding-top: 15px;
    }
    
    .course-selection-first {
        margin-top: 0;
        padding-top: 0;
    }
    
    .course-selection h4 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .email-section {
        margin-top: 15px;
        padding-top: 15px;
    }
    
    .email-section h4 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .form-intro {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .course-option {
        padding: 10px;
    }
    
    .option-content {
        width: calc(100% - 30px);
        margin-right: 30px;
    }
    
    .option-content .icon {
        margin-right: 10px;
    }
    
    .option-content .icon svg {
        width: 24px;
        height: 24px;
    }
    
    .option-content .text strong {
        font-size: 0.9rem;
        display: inline;
        margin-right: 4px;
        margin-bottom: 0;
    }
    
    .option-content .text strong::after {
        content: ": ";
        display: inline;
    }
    
    .option-content .text span {
        font-size: 0.75rem;
        display: inline;
    }
    
    .auth-button {
        padding: 10px;
        font-size: 0.95rem;
        margin-top: 15px;
    }
}

/* Form Steps Container */
.form-steps-container {
    position: relative;
    overflow: hidden;
    min-width: 100%;
}

/* Form Steps */
.form-step {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    animation: none;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Step Navigation Buttons */
.next-step-btn {
    width: 100%;
    padding: 16px;
    margin-top: 30px;
    background: #000000;
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Nunito Sans', sans-serif;
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.next-step-btn:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.next-step-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.back-step-btn {
    transition: all 0.3s ease;
}

.back-step-btn {
    background: none;
    color: #0bb4aa;
    border: none;
    padding: 10px 0;
    font-size: 0.95rem;
    cursor: pointer;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-family: 'Nunito Sans', sans-serif;
}

.back-step-btn:hover {
    color: #0d8a82;
    transform: translateX(-3px);
}

/* Form Intro Text */
.form-intro {
    text-align: center;
    margin-bottom: 25px;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Course Selection First Step */
.course-selection-first {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

/* Email Section */
.email-section {
    margin-top: 0;
}

.email-section h4 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: left;
    font-size: 1.05rem;
}
    .auth-trust-badge {
        margin-top: 15px;
        padding-top: 15px;
    }
    
    .auth-trust-badge .trust-icons {
        gap: 12px;
    }
    
    .auth-trust-badge .trust-icons svg {
        width: 14px;
        height: 14px;
    }
}

/* Auth Focus Visible Enhancements */
.tab-button:focus-visible,
.auth-button:focus-visible,
.course-option:focus-visible {
    outline: 3px solid #0bb4aa;
    outline-offset: 3px;
    border-radius: 4px;
}

.form-group input[type="email"]:focus-visible {
    outline: none;
    border-color: #0bb4aa;
    box-shadow: 0 0 0 3px rgba(11, 180, 170, 0.2);
}

/* Mobile Success Blocks Styles */
.mobile-success-block,
.mobile-login-success-block {
    padding: 30px 20px;
    text-align: center;
    background: white;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-success-heading {
    color: #1e1e1e !important;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
    text-shadow: none !important;
}

.mobile-success-message {
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.mobile-success-link {
    color: #0bb4aa !important;
    text-decoration: underline;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.mobile-success-link.mobile-success-link-secondary {
    margin-bottom: 0;
}

/* OTP Container Styles */
.otp-container {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.otp-message {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 14px;
}

.otp-input {
    width: 100%;
    padding: 12px;
    font-size: 20px;
    text-align: center;
    letter-spacing: 8px;
    font-family: monospace;
}

.agb-group-otp {
    margin-top: 20px;
    margin-left: 5px;
}

.otp-confirm-btn {
    width: 100%;
    margin-top: 15px;
}

.otp-resend-container {
    text-align: center;
    margin-top: 10px;
}

.otp-resend-link {
    color: #0bb4aa;
    text-decoration: underline;
    font-size: 14px;
}

/* Message Containers */
.activation-warning {
    margin-top: 15px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 5px;
    padding: 12px;
    text-align: center;
    color: #856404;
}

.resend-link-container,
.change-course-container {
    margin-top: 15px;
    background: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.change-course-container {
    margin-top: 10px;
}

.resend-link,
.change-course-link {
    color: #0bb4aa;
    text-decoration: underline;
    font-size: 14px;
}

/* --- Contact Page Styles --- */
.contact-section {
    padding: 80px 20px;
    background-color: var(--color-light-bg);
}

.contact-wrapper {
    background: var(--color-white);
    padding: 60px;
    border-radius: var(--border-radius-container);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Contact Form Styles */
.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--color-heading);
    font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-container);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: border-color 0.3s ease;
    background-color: #fafafa;
}

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

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 16px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: none;
    border-radius: var(--border-radius-button);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form button:hover {
    background-color: #1e2a38;
    transform: translateY(-2px);
}

/* Contact Info Styles */
.contact-info h3 {
    margin-top: 0;
    font-size: 1.8rem;
    color: var(--color-heading);
    margin-bottom: 20px;
}

.contact-info .intro-text {
    margin-bottom: 40px;
    color: #666;
    line-height: 1.6;
    font-size: 1.05rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    text-decoration: none;
    color: var(--color-text);
    transition: transform 0.2s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-item svg {
    width: 28px;
    height: 28px;
    margin-right: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 3px;
}


.info-item span {
    line-height: 1.6;
    font-size: 1.05rem;
}

.info-item strong {
    display: block;
    margin-top: 2px;
    color: var(--color-heading);
}

.contact-item {
    transition: transform 0.2s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.info-item a,
.contact-item a {
    text-decoration: none !important;
}

.info-item a:hover,
.contact-item a:hover {
    text-decoration: underline !important;
}

/* Footer: fix uneven spacing around | separators */
.footerLinks a:nth-child(2),
.footerLinks a:nth-child(3) {
    margin-left: 0 !important;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }
    
    .contact-section {
        padding: 40px 20px;
    }
}