/* CSS Variables */
:root {
    --primary-color: #0A2463; /* Deep Navy Blue */
    --secondary-color: #247BA0; /* Supporting Lighter Blue */
    --accent-color: #FFD166; /* Gold/Yellow */
    --accent-color-hover: #f0c156; /* Darker Gold for hover */

    --text-color-dark: #222222; /* For light backgrounds */
    --text-color-light: #FFFFFF; /* For dark backgrounds */
    --text-color-medium: #4A5568; /* Grey for subtitles/less important text */

    --background-light: #F5F7FA; /* Very light grey */
    --background-medium: #EAEFF4; /* Slightly darker grey for sections */
    --background-dark: var(--primary-color);

    --card-background: #FFFFFF;
    --footer-background: #071A40; /* Very dark blue */

    --border-color: #D1D5DB; /* Light grey for borders */
    --input-border-color: #CBD5E0;
    --input-focus-border-color: var(--accent-color);

    --shadow-sm: 0 1px 3px 0 var(--shadow-color), 0 1px 2px 0 var(--shadow-color);
    --shadow-md: 0 4px 6px -1px var(--shadow-color), 0 2px 4px -1px var(--shadow-color);
    --shadow-lg: 0 10px 15px -3px var(--shadow-color), 0 4px 6px -2px var(--shadow-color);
    --shadow-color: rgba(0, 0, 0, 0.08);

    --font-family-headings: 'Oswald', sans-serif;
    --font-family-body: 'Nunito', sans-serif;

    --header-height: 80px; /* Approximate header height */
    --border-radius: 8px;
    --transition-speed: 0.3s;

    --overlay-color: rgba(0, 0, 0, 0.5); /* For text on images */
    --glassmorphism-bg: rgba(255, 255, 255, 0.1);
    --glassmorphism-blur: blur(8px);
}

/* Base Styles & Resets */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px; /* Base font size for rem units */
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family-body);
    color: var(--text-color-dark);
    background-color: var(--background-light);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Typography */
h1, h2, h3, h4, h5, h6, .title, .subtitle {
    font-family: var(--font-family-headings);
    color: var(--text-color-dark);
    margin-bottom: 0.75em;
    line-height: 1.2;
    font-weight: 700;
}

.title.is-1 { font-size: clamp(2.5rem, 5vw, 4rem); }
.title.is-2 { font-size: clamp(2rem, 4vw, 3rem); }
.title.is-3 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.title.is-4 { font-size: clamp(1.5rem, 3vw, 2rem); }
.title.is-5 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
.title.is-6 { font-size: clamp(1rem, 2vw, 1.25rem); }

.subtitle.is-3 { font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--text-color-medium); font-weight: 400; }
.subtitle.is-5 { font-size: clamp(1.1rem, 2.2vw, 1.5rem); color: var(--text-color-medium); font-weight: 400; }
.subtitle.is-6 { font-size: clamp(0.9rem, 1.8vw, 1.1rem); color: var(--text-color-medium); font-weight: 400; }

p {
    margin-bottom: 1.25rem;
    color: var(--text-color-dark);
}

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

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

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

ul, ol {
    list-style-position: inside;
    margin-left: 1.5em;
    margin-bottom: 1rem;
}

ul li, ol li {
    margin-bottom: 0.5rem;
}

/* Layout - Bulma-like classes */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.section {
    padding: 4rem 1.5rem;
}

.section.has-background-light {
    background-color: var(--background-medium);
}

.columns {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    margin-top: -0.75rem;
}

.columns.is-centered {
    justify-content: center;
}

.columns.is-multiline {
    flex-wrap: wrap;
}

.column {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    padding: 0.75rem;
}

/* Common column sizes (can be expanded) */
.column.is-one-third { flex: none; width: 33.3333%; }
.column.is-two-fifths { flex: none; width: 40%; }
.column.is-two-thirds { flex: none; width: 66.6667%; }
.column.is-four-fifths { flex: none; width: 80%; }
.column.is-half { flex: none; width: 50%; }

@media screen and (max-width: 768px) {
    .column.is-one-third,
    .column.is-two-fifths,
    .column.is-two-thirds,
    .column.is-four-fifths,
    .column.is-half {
        width: 100%;
    }
}

.has-text-centered { text-align: center; }
.has-text-left { text-align: left; }
.has-text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mt-6 { margin-top: 4.5rem !important; }

.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }

.is-size-5 { font-size: 1.25rem; }
.is-size-7 { font-size: 0.875rem; }
.has-text-grey { color: var(--text-color-medium) !important; }
.is-italic { font-style: italic; }

/* Header & Navbar */
.site-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--glassmorphism-blur);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color var(--transition-speed) ease;
}

.site-header.scrolled {
    background-color: var(--card-background);
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.navbar-brand .logo {
    font-family: var(--font-family-headings);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
}
.navbar-brand .logo:hover {
    color: var(--accent-color);
}

.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-end {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-item {
    padding: 0.75rem 1rem;
    color: var(--text-color-dark);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.navbar-item::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transition: transform var(--transition-speed) ease-out;
}

.navbar-item:hover,
.navbar-item.is-active {
    color: var(--accent-color);
}
.navbar-item:hover::after,
.navbar-item.is-active::after {
    transform: scaleX(1);
}

.navbar-burger {
    display: none;
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    position: relative;
    margin-left: auto;
}

.navbar-burger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 25px;
    background-color: var(--primary-color);
    border-radius: 3px;
    left: calc(50% - 12.5px);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.navbar-burger span:nth-child(1) { top: calc(50% - 8px); }
.navbar-burger span:nth-child(2) { top: calc(50% - 1.5px); }
.navbar-burger span:nth-child(3) { top: calc(50% + 5px); }

.navbar-burger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar-burger.is-active span:nth-child(2) { opacity: 0; }
.navbar-burger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* Hero Section */
.hero {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--text-color-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero.is-fullheight {
    min-height: 100vh; /* Use min-height to ensure it's at least viewport height */
}

/* Overlay for Hero and other parallax backgrounds with text */
.hero::before,
.has-parallax-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)); /* Darker overlay */
    z-index: 1;
}
.has-parallax-background.section::before { /* Ensure overlay is under content for sections */
     content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.75));
    z-index: -1; /* Place overlay behind section content but above bg image */
}
.has-parallax-background {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Simple parallax */
    z-index: 0; /* Context for ::before */
}

.hero-body {
    position: relative; /* To be above the overlay */
    z-index: 2;
    padding: 3rem 1.5rem;
    width: 100%;
}

.hero-title {
    color: var(--text-color-light); /* Strictly white as requested */
    font-size: clamp(3rem, 6vw, 5rem); /* Adaptive font size */
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-subtitle {
    color: var(--text-color-light); /* Strictly white */
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* General Section Styling */
.section-title {
    color: var(--text-color-dark);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-title-light { /* For sections with dark backgrounds */
    color: var(--text-color-light);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.section-subtitle {
    margin-top: -1.5rem; /* Pull up under main title */
    margin-bottom: 2rem;
    color: var(--text-color-medium);
}


/* Card Styles */
.card {
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* For equal height cards in a row */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-image { /* Container for the image figure */
    position: relative;
    display: block; /* Make sure it's a block for figure inside */
}

.card-image figure.image { /* Bulma's figure.image */
    margin: 0; /* Reset margin if any */
    overflow: hidden; /* Ensure image doesn't overflow */
    position: relative;
}
/* Aspect ratios */
.card-image figure.is-4by3 { padding-top: 75%; height: 0; }
.card-image figure.is-3by2 { padding-top: 66.66%; height: 0; }
.card-image figure.is-16by9 { padding-top: 56.25%; height: 0; }

.card-image figure.image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}
.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1; /* Allows content to push footer down in flex column */
    display: flex;
    flex-direction: column;
    text-align: left; /* Default text alignment for card content */
}
.card-content .title, .card-content .subtitle {
    margin-bottom: 0.5rem;
}
.card-content .content {
    font-size: 0.95rem;
    color: var(--text-color-medium);
    margin-bottom: 1rem; /* Space before any actions */
}
.card-content .content p:last-child {
    margin-bottom: 0;
}

/* Specific card types adjustment if needed */
.stat-card .title, .award-card .title, .press-card .title {
    color: var(--primary-color);
}
.stat-card .card-content, .award-card .card-content, .press-card .card-content,
.testimonial-card .card-content {
    text-align: center; /* Center content for these specific cards */
}

/* Testimonial Card */
.testimonial-card {
    background-color: var(--glassmorphism-bg);
    backdrop-filter: var(--glassmorphism-blur);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-color-light);
}
.testimonial-card .title, .testimonial-card .subtitle, .testimonial-card .content {
    color: var(--text-color-light);
}
.testimonial-card .media-left .image img {
    border: 2px solid var(--accent-color);
}
.testimonial-card .media-content .title {
    font-size: 1.2rem;
}
.testimonial-card .media-content .subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Profile/Team Member like structure for testimonials */
.media {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    text-align: left; /* Realign for media object */
}
.media-left {
    margin-right: 1rem;
    flex-shrink: 0;
}
.media-content {
    flex-grow: 1;
}
.image.is-64x64 img {
    width: 64px;
    height: 64px;
    object-fit: cover;
}
.is-rounded { border-radius: 50%; }


/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--accent-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    z-index: 1;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    z-index: 2;
}
.timeline-item::after { /* The circle on the timeline */
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--card-background);
    border: 4px solid var(--accent-color);
    top: 20px;
    border-radius: 50%;
    z-index: 3;
}
/* Place the item to the left */
.timeline-item:nth-child(odd) {
    left: 0;
}
/* Place the item to the right */
.timeline-item:nth-child(even) {
    left: 50%;
}
/* Fix the circle for right-sided items */
.timeline-item:nth-child(even)::after {
    left: -10px;
}
.timeline-content {
    padding: 1.5rem;
    background-color: var(--card-background);
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    color: var(--text-color-dark); /* Ensure text is dark on light background */
}
/* On dark background sections */
.has-parallax-background .timeline-content {
    background-color: var(--glassmorphism-bg);
    backdrop-filter: var(--glassmorphism-blur);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-color-light);
}
.has-parallax-background .timeline-content p,
.has-parallax-background .timeline-content .heading {
     color: var(--text-color-light);
}
.has-parallax-background .timeline::after {
    background-color: var(--text-color-light);
}
.has-parallax-background .timeline-item::after {
    background-color: var(--primary-color); /* Darker circle against light line */
    border-color: var(--text-color-light);
}

.timeline-content .heading {
    font-family: var(--font-family-headings);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.has-parallax-background .timeline-content .heading {
    color: var(--accent-color);
}


/* Accordion Styles */
.accordion-container {
    max-width: 800px;
    margin: 1rem auto;
}
.accordion-item {
    background-color: var(--card-background);
    margin-bottom: 10px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.accordion-header {
    background-color: transparent;
    color: var(--primary-color);
    cursor: pointer;
    padding: 1rem 1.5rem;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1rem;
    font-family: var(--font-family-headings);
    font-weight: 700;
    transition: background-color var(--transition-speed) ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-header:hover {
    background-color: var(--accent-color-hover);
    color: var(--primary-color);
}
.accordion-header .accordion-icon {
    font-size: 1.5rem;
    transition: transform var(--transition-speed) ease;
}
.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
}
.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.accordion-content p {
    padding: 1.5rem 0;
    margin-bottom: 0;
    color: var(--text-color-medium);
}
.accordion-content.active {
    max-height: 500px; /* Adjust as needed */
    padding: 0 1.5rem 1.5rem 1.5rem;
}
.methodology-image {
    margin-top: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}
.methodology-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
}


/* Global Button Styles */
.button, button, input[type="submit"], input[type="button"] {
    display: inline-block;
    font-family: var(--font-family-headings);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.8em 1.8em;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-size: 1rem;
    text-align: center;
    white-space: nowrap;
    user-select: none;
}

.button.is-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}
.button.is-primary:hover {
    background-color: var(--accent-color-hover);
    border-color: var(--accent-color-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.button.is-secondary {
    background-color: var(--secondary-color);
    color: var(--text-color-light);
    border-color: var(--secondary-color);
}
.button.is-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.button.is-link.is-outlined {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
    padding: 0.4em 1em; /* Smaller padding for "Read more" */
    font-size: 0.9rem;
}
.button.is-link.is-outlined:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.button.is-large { font-size: 1.25rem; padding: 1em 2.2em; }
.button.is-medium { font-size: 1.1rem; padding: 0.9em 2em; }
.button.is-small { font-size: 0.9rem; padding: 0.6em 1.5em; }


/* Form Styles */
.field { margin-bottom: 1.5rem; }
.label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color-dark);
    font-size: 0.95rem;
}
.input, .textarea {
    display: block;
    width: 100%;
    padding: 0.8em 1em;
    font-size: 1rem;
    font-family: var(--font-family-body);
    color: var(--text-color-dark);
    background-color: var(--card-background);
    border: 1px solid var(--input-border-color);
    border-radius: var(--border-radius);
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
.input:focus, .textarea:focus {
    outline: none;
    border-color: var(--input-focus-border-color);
    box-shadow: 0 0 0 2px rgba(255, 209, 102, 0.5); /* Accent color focus ring */
}
.textarea {
    min-height: 120px;
    resize: vertical;
}
.field.is-grouped {
    display: flex;
    justify-content: flex-start; /* Default, can be overridden by .is-centered */
}
.field.is-grouped.is-centered {
    justify-content: center;
}
.field.is-grouped > .control:not(:last-child) {
    margin-right: 0.75rem;
}
.contact-form-card {
    padding: 2rem;
}

/* External Resources Section */
.resource-list ul {
    list-style: none;
    margin-left: 0;
}
.resource-list li {
    background-color: var(--card-background);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-speed) ease;
}
.resource-list li:hover {
    box-shadow: var(--shadow-md);
}
.resource-list li a strong {
    font-size: 1.2rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}
.resource-list li a:hover strong {
    color: var(--accent-color);
}
.resource-list li p {
    font-size: 0.95rem;
    color: var(--text-color-medium);
    margin-bottom: 0;
}


/* Footer */
.site-footer {
    background-color: var(--footer-background);
    color: var(--text-color-light);
    padding: 3rem 1.5rem 1.5rem;
}
.footer-title {
    color: var(--accent-color);
    margin-bottom: 1rem;
}
.site-footer p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}
.site-footer ul {
    list-style: none;
    margin-left: 0;
}
.site-footer ul li a {
    color: rgba(255,255,255,0.8);
    padding: 0.3rem 0;
    display: inline-block;
}
.site-footer ul li a:hover {
    color: var(--accent-color);
}
.site-footer .content.has-text-centered {
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.5rem;
}
.site-footer .content.has-text-centered p {
    font-size: 0.9rem;
}

/* Social Links in Footer - Text Based */
.social-links li a {
    text-transform: capitalize; /* Or keep as is */
}


/* Animations - Base states for GSAP and CSS transitions */
[data-animation] {
    /*opacity: 0;*/
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
[data-animation].is-visible {
    opacity: 1;
    transform: translateY(0);
}
.hero-title.animated-text-fill, .hero-subtitle.animated-text-fill { /* Example */
    opacity: 1; /* Reset opacity if GSAP handles it directly */
    transform: translateY(0);
}


/* Specific Page Styles */
/* success.html */
body[data-barba-namespace="success"] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
body[data-barba-namespace="success"] .main-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.success-message {
    background-color: var(--card-background);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 500px;
}
.success-message h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.success-message p {
    color: var(--text-color-medium);
    margin-bottom: 2rem;
}

/* privacy.html & terms.html */
.page-content {
    padding-top: var(--header-height); /* Offset for fixed header */
}
.page-content .section:first-child {
    padding-top: calc(4rem + 20px); /* Add a bit more top padding to first section */
}
.page-text-content h2.section-subtitle {
    margin-top: 2rem;
    text-align: left;
    color: var(--primary-color);
}
.page-text-content ul {
    margin-left: 0.5em; /* Closer to text */
}
.page-text-content ul li {
    line-height: 1.8;
}

/* Minimal header/footer for simple pages */
.minimal-header .navbar {
    justify-content: center; /* Center logo on simple pages */
}
.minimal-header .navbar-menu, .minimal-header .navbar-burger {
    display: none;
}
.minimal-footer {
    padding: 1.5rem;
    text-align: center;
}
.minimal-footer .columns { display: none; } /* Hide columns if not needed */
.minimal-footer .content.has-text-centered {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}


/* Responsive adjustments */
@media screen and (max-width: 1023px) { /* Tablet and below */
    .navbar-menu {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--card-background);
        flex-direction: column;
        align-items: stretch;
        box-shadow: var(--shadow-md);
        padding-bottom: 1rem;
        border-top: 1px solid var(--border-color);
    }
    .navbar-menu.is-active {
        display: flex;
    }
    .navbar-end {
        flex-direction: column;
        width: 100%;
    }
    .navbar-item {
        width: 100%;
        text-align: center;
        padding: 1rem;
        border-bottom: 1px solid var(--background-medium);
    }
    .navbar-item:last-child {
        border-bottom: none;
    }
    .navbar-item::after { display: none; } /* Remove underline for mobile menu items */
    .navbar-burger {
        display: block;
    }

    .columns { margin-left: 0; margin-right: 0; }
    .column { padding-left: 0; padding-right: 0; }
    .columns:not(.is-desktop) > .column:not(:last-child) {
      margin-bottom: 1.5rem;
    }
}

@media screen and (max-width: 768px) { /* Mobile */
    .section { padding: 3rem 1rem; }
    .hero.is-fullheight { min-height: 80vh; }
    .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
    .hero-subtitle { font-size: clamp(1.1rem, 4vw, 1.5rem); }
    
    .timeline::after { left: 10px; margin-left: 0; }
    .timeline-item { width: 100%; padding-left: 50px; padding-right: 0; }
    .timeline-item:nth-child(even) { left: 0; }
    .timeline-item::after, .timeline-item:nth-child(even)::after {
        left: 0px; /* Adjust to align with the new line position */
    }

    .footer .columns .column {
        margin-bottom: 2rem;
        text-align: center;
    }
    .footer .columns .column:last-child {
        margin-bottom: 0;
    }
    .footer-title {
        text-align: center;
    }
}
.navbar-burger{
    display: none;
}