:root {
    /* Logo-Specific Palette */
    --logo-blue: #3F4494;     /* Primary Blue (Outer Ring) */
    --rich-black: #1D1D1B;    /* Inner Circle (Rich Black) */
    --pure-white: #FFFFFF;    /* White (Text and Icon) */
    
    /* Swapped: Blue is Main, Black is Minor/Card */
    --bg-body: var(--logo-blue);
    --bg-card: rgba(29, 29, 27, 0.8); /* Rich Black with slight transparency */
    --bg-card-hover: rgba(29, 29, 27, 0.95); 
    --bg-header: rgba(63, 68, 148, 0.95); /* Glassy Primary Blue */
    
    --primary-color: #64FFDA; /* Teal/Cyan for high contrast accents on Blue */
    --secondary-color: #FFD700; /* Gold */
    
    --text-header: var(--pure-white);
    --text-main: #E0E0E0;     /* Off-white */
    --text-highlight: #FFFFFF;
    
    --white: var(--pure-white);
    --border-light: rgba(255, 255, 255, 0.2);
    --shadow-blue: 0 10px 30px -15px rgba(29, 29, 27, 0.6);
    
    --font-main: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Removes bottom space */
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-body);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(29, 29, 27, 0.2), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(29, 29, 27, 0.2), transparent 40%);
    overflow-x: hidden; /* Prevent horizontal scroll globally */
    width: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-header);
    font-weight: 700;
    line-height: 1.2;
}

/* Fluid Typography */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.8rem); }
p { font-size: clamp(0.95rem, 1.5vw, 1.1rem); }

/* Global Animations */
.fade-in-up, .fade-in-left, .fade-in-right, .zoom-in {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.fade-in-up { transform: translateY(40px); }
.fade-in-left { transform: translateX(-40px); }
.fade-in-right { transform: translateX(40px); }
.zoom-in { transform: scale(0.9); }

.animate {
    opacity: 1;
    transform: none;
}

/* Delay utilities */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

p {
    margin-bottom: 1rem;
}

/* Header */
header {
    background: var(--bg-header);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 90px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Logo - Constrained to Header */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
    flex: 0 0 auto;
}

.logo img {
    height: 70px;
    width: 70px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 50%;
    padding: 8px;
    margin-left: 10px;
}

/* Navigation Menu - Centered & Block Style */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center; /* Center the menu items */
}

.nav-links li {
    margin: 0 8px; /* Balanced spacing */
}

.nav-links a {
    text-decoration: none;
    color: var(--text-header);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 12px 24px; /* Block padding */
    border-radius: 4px; /* Slight rounding for blocks */
    background: rgba(255, 255, 255, 0.05); /* Subtle background for blocks */
    border: 1px solid transparent;
}

.nav-links a:hover {
    background: var(--primary-color); /* Teal background on hover */
    color: var(--rich-black); /* Dark text for contrast */
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(100, 255, 218, 0.3);
    transform: translateY(-2px);
}

/* Remove old underline effect */
.nav-links a::after {
    display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-header);
    margin: 3px 0;
    transition: 0.4s;
}

/* Mobile Menu & Responsiveness */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        position: fixed; /* Fixed so it stays visible even if header scrolls out (though header is fixed) */
        right: 20px;
        top: 28px; /* Centered vertically in 90px header (approx) */
        z-index: 2001; /* Higher than modal */
    }

    /* Hamburger Animation */
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-links {
        display: none; /* Hidden by default on mobile */
        flex-direction: column;
        width: 100%;
        position: fixed; /* Fixed to stay on screen */
        top: 90px; /* Below header */
        left: 0;
        height: calc(100vh - 90px); /* Full height minus header */
        background: var(--bg-header);
        backdrop-filter: blur(15px); /* Stronger blur */
        padding: 20px 0;
        border-bottom: 1px solid var(--border-light);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        overflow-y: auto; /* Allow scrolling if menu is long */
    }

    .nav-links.active {
        display: flex;
        animation: slideInRight 0.3s ease-out;
    }
    
    @keyframes slideInRight {
        from { opacity: 0; transform: translateX(20px); }
        to { opacity: 1; transform: translateX(0); }
    }

    .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        width: 85%;
        margin: 0 auto;
        padding: 15px;
        font-size: 1.1rem;
    }

    /* Optimized Hero for Mobile "Above the Fold" */
    .hero {
        height: 100vh; /* Force full viewport height */
        min-height: auto; /* Reset min-height */
        padding-top: 90px; /* Exact header height */
        padding-bottom: 20px;
        align-items: center; /* Center content vertically */
    }

    .hero-content {
        padding: 1.2rem;
        width: 92%;
        margin-top: 0; /* Remove extra top margin */
        background: rgba(255, 255, 255, 0.1);
    }

    .hero-content h1 {
        font-size: 1.5rem; /* Reduced further for fit */
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 0.9rem; /* Smaller paragraph text */
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .services-grid {
        grid-template-columns: 1fr; /* Stack services on mobile */
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

/* Modal Styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.8); 
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-card);
    margin: auto;
    padding: 30px;
    border: 1px solid var(--primary-color);
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    color: var(--text-main);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

.success-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 550px;
    background-color: var(--bg-body); /* Fallback color */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-header);
    margin-top: 90px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
}

.slide-1 {
    background-image: url('assets/images/hero-section-1.webp');
    animation: kenBurns 20s linear infinite;
}

.slide-2 {
    background-image: url('assets/images/hero-section-2.webp');
    animation: kenBurnsDelayed 20s linear infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(5, 10, 24, 0.9), rgba(5, 10, 24, 0.8)); /* Slightly darker/more transparent feel */
    z-index: 1;
}

@keyframes kenBurns {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    5% {
        opacity: 1;
    }
    45% {
        opacity: 1;
    }
    50% {
        opacity: 0;
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

@keyframes kenBurnsDelayed {
    0% {
        opacity: 0;
        transform: scale(1.2);
    }
    45% {
        opacity: 0;
        transform: scale(1.2);
    }
    50% {
        opacity: 0; /* Start fading in */
    }
    55% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-body), transparent);
    z-index: 2;
}

.hero-content {
    z-index: 3;
    background: rgba(255, 255, 255, 0.08); /* More transparent glass */
    backdrop-filter: blur(12px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 90%;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    background: linear-gradient(to right, #fff, #b0c4de);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    color: var(--text-main);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn:hover {
    color: var(--bg-body);
    box-shadow: 0 0 20px rgba(76, 201, 240, 0.4);
}

.btn:hover::before {
    width: 100%;
}

/* Sections */
.section {
    padding: 3rem 0; /* Reduced spacing */
}

.section-title {
    text-align: center;
    margin-bottom: 2rem; /* Reduced spacing */
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    width: 100%;
    color: var(--text-header);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    box-shadow: 0 0 10px var(--primary-color);
}

/* Service Cards - Glassmorphism */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 1 Row, 4 Columns */
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--bg-card);
    padding: 2.5rem 1.5rem; /* Slightly reduced padding */
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    height: 100%; /* Uniform height */
}

/* ... existing service-card hover ... */
.service-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: var(--primary-color);
}

.service-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(76, 201, 240, 0.3);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.read-more {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.read-more:hover {
    color: var(--primary-color);
    letter-spacing: 1px;
}

/* Testimonials Collage */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 250px 250px;
    gap: 1.5rem;
    padding: 1rem 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 0;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--border-light);
}

/* First item takes full height on left */
.video-wrapper:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

/* Others stack on right */
.video-wrapper:nth-child(2) {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
}

.video-wrapper:nth-child(3) {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .video-wrapper {
        height: 0;
        padding-bottom: 56.25%; /* Restore aspect ratio */
    }
    .video-wrapper:nth-child(1),
    .video-wrapper:nth-child(2),
    .video-wrapper:nth-child(3) {
        grid-column: auto;
        grid-row: auto;
    }
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Destinations */
.destinations {
    background: #020c1b; /* Slightly darker */
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 1px solid var(--border-light);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.8);
}

.destination-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem;
    text-align: left;
}

.destination-info h3 {
    font-size: 1.8rem;
    color: var(--text-header);
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* Contact / Forms */
form input, form textarea {
    background: var(--bg-body);
    border: 1px solid var(--border-light);
    color: var(--text-header);
    border-radius: 4px;
    font-family: var(--font-main);
}

form input:focus, form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(76, 201, 240, 0.2);
}

form label {
    color: var(--text-header);
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--rich-black);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-light);
    margin-top: 4rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color);
}

.copyright {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    color: var(--text-main);
    font-size: 0.9rem;
}

/* -------------------------------------------
   Unique Layouts for Service Pages (Dark Mode)
------------------------------------------- */

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
    box-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
}

.timeline-item {
    padding: 10px 50px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--bg-body);
    border: 3px solid var(--primary-color);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 10px var(--primary-color);
}

.left { left: 0; }
.right { left: 50%; }

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 40px;
    border: medium solid var(--bg-card);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--bg-card);
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 40px;
    border: medium solid var(--bg-card);
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--bg-card) transparent transparent;
}

.right::after { left: -8px; }

.timeline-content {
    padding: 30px;
    background-color: var(--bg-card);
    position: relative;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: transform 0.3s;
}

.timeline-content:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    background-color: rgba(255,255,255,0.03);
    font-weight: 700;
    color: var(--text-header);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header:hover {
    background-color: rgba(255,255,255,0.08);
    color: var(--primary-color);
}

.accordion-content {
    display: none;
    padding: 25px;
    background-color: var(--bg-card);
    color: var(--text-main);
    border-top: 1px solid var(--border-light);
}

.accordion-item.active .accordion-content {
    display: block;
}

.success-box {
    margin-top: 2rem; 
    background: var(--bg-card); 
    padding: 2rem; 
    border-radius: 12px; 
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(76, 201, 240, 0.1);
    text-align: center;
}

/* Exam Grid */
.exam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.exam-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.exam-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.exam-header {
    background: linear-gradient(135deg, var(--bg-card-hover), var(--bg-card));
    color: var(--text-header);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.exam-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.exam-body {
    padding: 2rem;
}

.exam-features li {
    margin-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.8rem;
    color: var(--text-main);
}

.exam-features i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Travel Guide */
.guide-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    background: rgba(255,255,255,0.02);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-light);
}

.guide-section:nth-child(even) {
    flex-direction: row-reverse;
}

.guide-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.guide-image img {
    width: 100%;
    height: 100%;
    max-height: 300px; /* Keeps image compact/small as requested */
    object-fit: cover; /* Ensures image covers area without distortion */
    display: block;
}

.guide-content {
    flex: 1;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 90px;
        left: 0;
        background-color: var(--bg-card);
        flex-direction: column;
        padding: 2rem 0;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    .destination-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-section {
        flex-direction: column !important;
        gap: 2rem;
    }
    
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item::after { left: 21px; }
    .left::before, .right::before { left: 60px; border-color: transparent var(--bg-card) transparent transparent; }
    .right { left: 0; }
}
