/* --- Global Styles & Variables --- */
:root {
    --dark-blue: #0a192f;
    --light-blue: #112240;
    --lightest-blue: #1d335a;
    --neon-blue: #00d4ff;
    --teal: #00ffcc;
    --white: #ffffff;
    --soft-gray: #8892b0;
    --gradient: linear-gradient(90deg, var(--neon-blue), var(--teal));
    --shadow-glow: 0 0 15px rgba(0, 212, 255, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-blue);
    color: var(--soft-gray);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    line-height: 1.2;
    font-weight: 700;
}
h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; }

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
section { padding: 80px 0; }
.text-center { text-align: center; }

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    margin-top: 10px;
    margin-bottom: 0;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient);
    margin: 10px auto;
    border-radius: 2px;
}
.category {
    color: var(--teal);
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}
.features-list {
    list-style: none;
    margin-top: 20px;
}
.features-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}
.features-list li::before {
    content: '✓';
    color: var(--teal);
    position: absolute;
    left: 0;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}
.btn-primary {
    background: var(--gradient);
    color: var(--dark-blue);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}
.btn-secondary {
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
}
.btn-secondary:hover {
    background-color: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
}
.btn-emergency {
    background: transparent;
    border: 2px solid #ff4d4d;
    color: #ff4d4d;
}
.btn-emergency:hover {
    background: rgba(255, 77, 77, 0.1);
    transform: translateY(-3px);
}

/* --- Header & Navigation --- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background-color 0.3s ease, padding 0.3s ease;
}
#main-header.scrolled {
    background-color: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
#main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}
.nav-links {
    display: flex;
    list-style: none;
}
.nav-links li { margin: 0 15px; }
.nav-links a {
    color: var(--soft-gray);
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--neon-blue);
    border-bottom-color: var(--neon-blue);
}
.menu-toggle { display: none; }

/* --- Hero & Page Headers --- */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
    overflow: hidden;
}
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.hero-content { z-index: 1; }
.hero-content p {
    font-size: 1.2rem;
    margin: 20px 0 30px;
    color: var(--soft-gray);
}
.cta-buttons a { margin: 0 10px; }

.page-header {
    background-color: var(--light-blue);
    text-align: center;
    padding: 100px 0 60px;
    border-bottom: 1px solid var(--lightest-blue);
}
.page-header h1 { margin-top: 10px; }

/* --- Cards & Grids --- */
.service-card {
    background-color: var(--light-blue);
    padding: 40px 30px;
    border-radius: 5px;
    border: 1px solid var(--lightest-blue);
    transition: all 0.3s ease;
    text-align: center;
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 30px -15px rgba(2,12,27,0.7);
}
.service-card h3 { margin: 20px 0 10px; }
.service-card .icon { color: var(--neon-blue); }
.service-card .icon svg { width: 40px; height: 40px; }
.services-grid, .values-grid, .testimonial-grid, .blog-grid, .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* --- Clients, Testimonials & CTA --- */
.client-logos { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 30px; filter: grayscale(100%) opacity(0.6); transition: filter 0.3s ease; }
.client-logos:hover { filter: grayscale(0%) opacity(1); }
.client-logos img { height: 40px; }

.testimonial-card { background-color: var(--light-blue); padding: 30px; border-radius: 5px; border-left: 4px solid var(--teal); }
.testimonial-card .quote { font-style: italic; margin-bottom: 20px; }
.testimonial-card .quote::before { content: '“'; font-size: 2rem; color: var(--teal); margin-right: 5px; }
.author h4 { margin: 0; }
.author span { font-size: 0.9rem; color: var(--neon-blue); }

#cta { background-color: var(--light-blue); text-align: center; border-top: 1px solid var(--lightest-blue); border-bottom: 1px solid var(--lightest-blue); }
#cta h2 { margin-bottom: 15px; }
#cta p { max-width: 600px; margin: 0 auto 30px; }

/* --- Footer --- */
footer { background-color: #051021; padding-top: 60px; border-top: 1px solid var(--lightest-blue); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-links h4 { color: var(--teal); margin-bottom: 10px; }
.footer-links ul { list-style: none; }
.footer-links a, .footer-contact a { color: var(--soft-gray); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--neon-blue); }
.footer-social h4 { color: var(--teal); margin-bottom: 10px; }
.social-icons { display: flex; gap: 15px; }
.social-icons a { color: var(--soft-gray); text-decoration: none; transition: color 0.3s; }
.social-icons a:hover { color: var(--neon-blue); }
.footer-bottom { text-align: center; padding: 20px 0; border-top: 1px solid var(--lightest-blue); font-size: 0.9rem; }
.footer-bottom a { color: var(--soft-gray); }

/* --- Pages: About & CEO --- */
.about-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; align-items: center; }
.about-image img { width: 100%; border-radius: 5px; }
.value-card { text-align: center; }
#ceo-section { background-color: var(--light-blue); border-top: 1px solid var(--lightest-blue); border-bottom: 1px solid var(--lightest-blue); }
.ceo-layout { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; align-items: center; }
.ceo-image img {
    width: 100%;
    max-width: 250px;
    border-radius: 50%;
    border: 4px solid var(--teal);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.2); /* Added subtle glow */
    margin-top: 15px;
    margin-bottom: 0;
}

.ceo-content h3 {
    margin-top: 15px;
    margin-bottom: 0;
}
.ceo-content h4 {
    color: var(--teal); /* Changed color */
    font-weight: 400;
    text-transform: uppercase; /* Added for professional title */
    letter-spacing: 1.5px; /* Added for spacing */
    margin-bottom: 20px;
}
.ceo-quote { font-size: 1.2rem; font-style: italic; color: var(--white); border-left: 3px solid var(--neon-blue); padding-left: 20px; margin-bottom: 20px; }
.ceo-social { display: flex; gap: 20px; margin-top: 20px; margin-bottom: 10px; }
.ceo-social a svg { width: 24px; height: 24px; color: var(--soft-gray); transition: color 0.3s ease; }
.ceo-social a:hover svg { color: var(--neon-blue); }

/* --- Pages: Services --- */
.service-detail-item { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 80px; }
.service-detail-item.reverse .service-detail-text { order: 2; }
.service-detail-img img { width: 100%; border-radius: 5px; }

/* --- Pages: Trainings & Detail --- */
.course-meta { margin-top: 15px; display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--soft-gray); }
.training-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.sidebar-widget { background: var(--light-blue); padding: 25px; border-radius: 5px; margin-bottom: 30px; }
.sidebar-widget img { width: 100%; border-radius: 5px; margin-bottom: 15px; }
.sidebar-widget h3 { margin-bottom: 15px; border-bottom: 2px solid var(--teal); padding-bottom: 10px; }
.sidebar-widget ul { list-style: none; }
.sidebar-widget ul li { margin-bottom: 10px; }
.instructor { display: flex; align-items: center; gap: 15px; }
.instructor img { width: 60px; height: 60px; border-radius: 50%; }
.instructor p { font-size: 0.9rem; margin: 0; }
.syllabus-module { border: 1px solid var(--lightest-blue); border-radius: 5px; margin-bottom: 10px; padding: 15px; }
.syllabus-module summary { font-weight: bold; color: var(--white); cursor: pointer; }
.syllabus-module p { padding-top: 10px; }

/* --- Pages: Initiatives & Request --- */
#initiative-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: 120px 0 80px; }
.initiative-hero-content h1 { font-size: 3rem; margin: 10px 0 20px; }
.initiative-hero-content p { font-size: 1.1rem; margin-bottom: 30px; }
.initiative-hero-image img { width: 100%; border-radius: 5px; }
#initiative-why { background-color: var(--light-blue); }
#initiative-lead { padding-bottom: 40px; }
.roadmap-container { display: flex; justify-content: space-between; position: relative; padding: 20px 0; }
.roadmap-container::before { content: ''; position: absolute; top: 42px; left: 5%; width: 90%; height: 2px; background: var(--lightest-blue); z-index: -1; }
.roadmap-step { display: flex; flex-direction: column; align-items: center; text-align: center; width: 15%; position: relative; }
.roadmap-step .icon-wrapper { width: 84px; height: 84px; border-radius: 50%; background: var(--dark-blue); border: 2px solid var(--neon-blue); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all 0.3s ease; }
.roadmap-step:hover .icon-wrapper { background: var(--light-blue); transform: scale(1.1); box-shadow: var(--shadow-glow); }
.roadmap-step .icon-wrapper svg { width: 32px; height: 32px; color: var(--teal); }
.roadmap-step h4 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; }
.roadmap-step p { font-size: 0.9rem; }
.session-card { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: center; background-color: var(--light-blue); padding: 30px; border-radius: 5px; margin-bottom: 40px; border-left: 4px solid var(--teal); overflow: hidden; }
.session-card.reverse .session-details { order: -1; }
.session-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 5px; transition: transform 0.3s ease; }
.session-image:hover img { transform: scale(1.05); }
.session-meta { display: flex; flex-wrap: wrap; gap: 20px; margin: 10px 0 20px; color: var(--soft-gray); font-size: 0.9rem; }
.meta-item { display: flex; align-items: center; gap: 8px; }
.meta-item svg { width: 16px; height: 16px; color: var(--neon-blue); flex-shrink: 0; }
.session-quote { font-style: italic; color: var(--white); margin-bottom: 25px; padding-left: 15px; border-left: 3px solid var(--neon-blue); }
.initiative-benefits h3 { margin-bottom: 20px; }

/* --- Pages: Incident --- */
#incident { background: linear-gradient(45deg, #ff2d2d, #0052d4); }
#incident .hotline a { display: inline-block; margin-top: 20px; padding: 15px 30px; background: rgba(255, 255, 255, 0.1); border: 2px solid var(--white); color: var(--white); text-decoration: none; border-radius: 5px; font-weight: bold; transition: background 0.3s ease; }
#incident .hotline a:hover { background: rgba(255, 255, 255, 0.2); }
.step-card { background: var(--light-blue); padding: 30px; border-radius: 5px; text-align: center; border-top: 4px solid var(--neon-blue); }
.step-number { width: 50px; height: 50px; background: var(--gradient); color: var(--dark-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: bold; margin: 0 auto 20px; }

/* --- Pages: Blog --- */
.blog-layout, .post-layout { display: grid; grid-template-columns: 3fr 1fr; gap: 40px; }
.blog-sidebar .sidebar-widget ul { list-style: none; }
.blog-sidebar .sidebar-widget ul li a { color: var(--soft-gray); text-decoration: none; }
.blog-sidebar .sidebar-widget ul li a:hover { color: var(--neon-blue); }
.blog-card { background-color: var(--light-blue); border-radius: 5px; overflow: hidden; text-decoration: none; transition: all 0.3s ease; border: 1px solid var(--lightest-blue); display: block; }
.blog-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px -15px rgba(2,12,27,0.7); border-color: var(--neon-blue); }
.blog-image { overflow: hidden; height: 200px; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-content { padding: 25px; }
.blog-content h3 { margin: 10px 0; font-size: 1.25rem; color: var(--white); }
.blog-content p { color: var(--soft-gray); font-size: 0.95rem; }
.blog-card.horizontal { display: flex; align-items: center; margin-bottom: 30px; }
.blog-card.horizontal .blog-image { height: 150px; width: 250px; flex-shrink: 0; }
.blog-meta { font-size: 0.8rem; color: var(--neon-blue); margin-top: 10px; display: block; }
.post-featured-image { width: 100%; border-radius: 5px; margin-bottom: 30px; }
.post-content p, .post-content ul, .post-content blockquote { margin-bottom: 20px; }
.post-content blockquote { border-left: 4px solid var(--teal); padding-left: 20px; font-style: italic; color: var(--white); }
.social-share a { color: var(--soft-gray); margin-right: 10px; }
#blog-listing {
    margin-top: 25px;
    margin-bottom: 25px;
}

/* --- Pages: Careers & Contact --- */
.job-listing { display: flex; justify-content: space-between; align-items: center; background: var(--light-blue); padding: 20px 30px; border-radius: 5px; margin-bottom: 20px; border-left: 4px solid transparent; transition: border-color 0.3s ease; }
.job-listing:hover { border-color: var(--neon-blue); }
.job-listing span { color: var(--soft-gray); }
.contact-wrapper { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; }
.contact-form .form-group { display: flex; gap: 20px; margin-bottom: 20px; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 15px; background: var(--light-blue); border: 1px solid var(--lightest-blue); border-radius: 5px; color: var(--white); margin-bottom: 20px; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--neon-blue); }
.contact-form h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}
.contact-details h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}
.contact-list li { list-style: none; margin-bottom: 15px; }
.contact-map { height: 250px; margin-top: 20px; }
.contact-map iframe {
    filter: grayscale(100%) invert(90%) hue-rotate(180deg) contrast(90%);
    border-radius: 5px;
}
/* --- Pages: Legal --- */
.legal-content h2 { margin-top: 30px; margin-bottom: 10px; }

/* --- Animations & Modal --- */
.fade-in-element { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in-element.visible { opacity: 1; transform: translateY(0); }

.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 25, 47, 0.85); backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { background: var(--light-blue); padding: 40px; border-radius: 5px; border-top: 4px solid var(--teal); width: 90%; max-width: 550px; position: relative; transform: scale(0.95); transition: transform 0.3s ease; }
.modal-overlay.active .modal-content { transform: scale(1); }
.close-modal { position: absolute; top: 10px; right: 15px; background: none; border: none; color: var(--soft-gray); font-size: 2.5rem; font-weight: 300; cursor: pointer; line-height: 1; transition: color 0.3s ease, transform 0.3s ease; }
.close-modal:hover { color: var(--white); transform: rotate(90deg); }
.modal-content h3 { margin-bottom: 10px; }
.modal-content p { margin-bottom: 30px; color: var(--soft-gray); }
body.modal-open { overflow: hidden; }

/* --- Cookie Consent Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px; /* This was changed from 'left' */
    max-width: 450px;
    background-color: var(--light-blue);
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 3000;
    transform: translateY(150%);
    transition: transform 0.5s ease-in-out;
}
.cookie-banner.active {
    transform: translateY(0);
}
.cookie-banner p {
    margin: 0;
    margin-bottom: 15px;
    color: var(--soft-gray);
}
.cookie-buttons {
    display: flex;
    gap: 15px;
}
.cookie-buttons .btn {
    flex-grow: 1;
    padding: 8px 15px;
}

/* --- Social Icons Fix --- */
.social-icons a,
.ceo-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* --- Enhanced Initiative Stats Section (Row Layout) --- */
#initiative-stats {
    background-color: var(--light-blue);
    padding: 40px 0;
    border-top: 1px solid var(--lightest-blue);
    border-bottom: 1px solid var(--lightest-blue);
}

#initiative-stats .counters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* This creates the 3-column row */
    gap: 0; /* Remove gap to use borders for separation */
}

#initiative-stats .counter-item {
    padding: 20px;
    position: relative;
    text-align: center;
}

/* Vertical separator for desktop */
#initiative-stats .counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: var(--lightest-blue);
}

#initiative-stats .counter-item .icon {
    color: var(--teal);
    margin-bottom: 15px;
}

#initiative-stats .counter-item .icon svg {
    width: 36px;
    height: 36px;
}

/* --- Enhanced About Page Counters --- */
#counters-section {
    background-color: var(--light-blue);
    border-top: 1px solid var(--lightest-blue);
    border-bottom: 1px solid var(--lightest-blue);
}

#counters-section .counters-grid {
    display: grid;
    /* This rule creates the 3-column horizontal row */
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

#counters-section .counter-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    text-align: left;
}

#counters-section .counter-icon {
    color: var(--neon-blue);
    flex-shrink: 0;
}

#counters-section .counter-icon svg {
    width: 48px;
    height: 48px;
}

#counters-section .counter-text h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin: 0;
}

#counters-section .counter-text p {
    margin: 0;
    color: var(--soft-gray);
}

/* --- Form Submission Result --- */
.form-result {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    display: none; /* Hidden by default */
}
.form-result.success {
    background-color: rgba(0, 255, 204, 0.1);
    border: 1px solid var(--teal);
    color: var(--teal);
}
.form-result.error {
    background-color: rgba(255, 77, 77, 0.1);
    border: 1px solid #ff4d4d;
    color: #ff4d4d;
}

/* --- Contact Page Link Color Fix --- */
.contact-list a {
    color: var(--soft-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: var(--neon-blue);
}
/******************************************/
/* Responsive Design             */
/******************************************/

/* --- Tablet (Medium Devices) --- */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2, .section-title { font-size: 2rem; }
    .about-grid, .service-detail-item, .contact-wrapper, .training-layout, .blog-layout, .post-layout, #initiative-hero, .ceo-layout, .session-card { grid-template-columns: 1fr; }
    .service-detail-item.reverse .service-detail-text, .session-card.reverse .session-details { order: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .roadmap-container { flex-direction: column; gap: 40px; }
    .roadmap-container::before { left: 42px; top: 5%; width: 2px; height: 90%; }
    .roadmap-step { flex-direction: row; text-align: left; width: 100%; gap: 20px; }
    .roadmap-step .icon-wrapper { flex-shrink: 0; }

    /* This ensures ALL service items have the image first on mobile */
    .service-detail-item .service-detail-img,
    .service-detail-item.reverse .service-detail-img {
        order: 1;
    }
    
    .service-detail-item .service-detail-text,
    .service-detail-item.reverse .service-detail-text {
        order: 2;
    }
}

/* --- Mobile (Small Devices) --- */
@media (max-width: 768px) {
    section { padding: 60px 0; }
    h1, .hero-content h1, #initiative-hero h1 { font-size: 2.2rem; }
    .contact-form .form-group { flex-direction: column; gap: 0; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 60%;
        height: 100vh;
        background: var(--light-blue);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 20px 0; }
    #main-header .btn-primary { display: none; }
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        cursor: pointer;
        z-index: 1001;
    }
    .menu-toggle span {
        width: 100%;
        height: 3px;
        background: var(--white);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .cta-buttons { display: flex; flex-direction: column; gap: 15px; align-items: center; }
    .counters-grid, .footer-grid { grid-template-columns: 1fr; }
    .footer-grid { text-align: center; }
    .social-icons { justify-content: center; }
    .job-listing { flex-direction: column; align-items: flex-start; gap: 15px; }
    .blog-card.horizontal { flex-direction: column; align-items: stretch; }
    .blog-card.horizontal .blog-image { width: 100%; height: 200px; }
    #initiative-hero { text-align: center; }
    .initiative-hero-content { order: 2; }
    .initiative-hero-image { order: 1; margin-bottom: 30px; }
    .ceo-layout { text-align: center; }
    .ceo-image { margin: 0 auto; }
    .ceo-social { justify-content: center; }

    .cookie-banner {
        left: 0;
        right: 0;
        bottom: 0;
        max-width: 100%;
        border-radius: 5px 5px 0 0;
        text-align: center;
    }
    .cookie-buttons {
        justify-content: center;
    }
    #initiative-stats .counters-grid {
        grid-template-columns: 1fr; /* Stack to a single column on mobile */
        gap: 30px; 
    }
    
    /* Hide vertical separators and add horizontal ones on mobile */
    #initiative-stats .counter-item:not(:last-child)::after {
        display: none;
    }
    #initiative-stats .counter-item:not(:last-child) {
        padding-bottom: 30px;
        border-bottom: 1px solid var(--lightest-blue);
    }
    #counters-section .counter-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding-left: 0;
        padding-right: 0;
    }

    #counters-section .counter-text h3 {
        font-size: 2.2rem;
    }


}