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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #0a0909;
    background-color: #ffffff;
}

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

a {
    color: #ca9505;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #daa106;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 100px;
}

.skip-links {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    padding: 10px;
}

.skip-links:focus-within {
    top: 0;
}

.skip-links ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.skip-links a {
    color: #0a0909;
    font-weight: 600;
}

.skip-links a:focus {
    outline: 2px solid #0960fa;
    outline-offset: 2px;
}

.site-header {
    background-color: #ffffff;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 0;
}

.site-header .container {
    padding: 0 100px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    width: 100%;
    max-width: 312px;
    height: auto;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
}

.main-navigation a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #0a0909;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.main-navigation a:hover {
    background-color: rgba(36, 37, 36, 0.08);
    color: #242524;
}

.main-navigation a.active {
    background-color: transparent;
    color: #242524;
    border-bottom: 3px solid #1f3a93;
    padding-bottom: 5px;
    border-radius: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle-icon {
    display: block;
    width: 28px;
    height: 3px;
    background: #0a0909;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================================
   HERO SECTION - FIXED HEIGHT
   ============================================================ */
.hero-section {
    min-height: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.hero-section .container {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-background {
    width: 100%;
    padding: 40px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-attachment: scroll;
    position: relative;
    margin: 0;
    min-height: 450px;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.hero-content h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 45px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.hero-content .highlight {
    display: block;
}

/* ============================================================
   SECTION STYLES - All white, no accents, aligned
   ============================================================ */
.section-white {
    background-color: #ffffff;
    padding: 15px 0 15px 0;
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

/* ============================================================
   SECTION HEADINGS - Uniform 22px, weight 600
   ============================================================ */
.section-white h2,
.section-white h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #1f3a93;
    text-align: justify;
    margin-bottom: 16px;
}

.section-white h2 .accent {
    color: #1f3a93;
}

/* ============================================================
   WELCOME SECTION - Special heading size
   ============================================================ */
#welcome h2 {
    font-size: 24px;
    font-weight: 800;
}

/* ============================================================
   ABOUT SECTION - Special heading size (matches welcome)
   ============================================================ */
#about-synergy h2 {
    font-size: 24px;
    font-weight: 800;
    margin-top: 0;
    padding-top: 0;
}

/* ============================================================
   SERVICES SECTION - Special heading size (matches about)
   ============================================================ */
#services-intro h2 {
    font-size: 24px;
    font-weight: 800;
    margin-top: 0;
    padding-top: 0;
}

/* ============================================================
   SECTION BODY TEXT - 16px Montserrat
   ============================================================ */
.section-white p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
    margin-bottom: 12px;
    color: #0b0b0b;
    line-height: 1.6;
}

/* ============================================================
   WELCOME SECTION - Additional spacing overrides
   ============================================================ */
.section-white h2 {
    margin-top: 0;
    padding-top: 0;
}

.section-white h3 {
    margin-bottom: 14px;
}

/* ============================================================
   HOW WE HELP & OTHER SECTIONS - Additional spacing overrides
   ============================================================ */
.section-white ul {
    margin: 8px 0 16px 0;
    padding-left: 0;
    color: #0b0b0b;
    list-style-position: inside;
}

.section-white ul li {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
    margin-bottom: 6px;
    padding-left: 20px;
    text-indent: -20px;
}

/* ============================================================
   ICON LIST - Brand Blue Checkmarks
   ============================================================ */
.icon-list {
    list-style: none;
    margin: 10px 0 20px 0;
    padding: 0;
}

.icon-list li {
    position: relative;
    padding-left: 0px;
    margin-bottom: 14px;
    text-align: left;
    min-height: 28px;
    display: flex;
    align-items: flex-start;
}

.icon-list li i {
    position: absolute;
    left: 10px;
    top: 0px;
    color: #2353a4;
    font-size: 20px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 1.4;
    flex-shrink: 0;
    display: inline-block;
}

.icon-list li .list-text {
    display: block;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    padding-left: 25px;
    margin-left: 0;
    text-indent: 0;
    margin-top: 2px;
}

.icon-list li strong {
    color: #242524;
    font-weight: 600;
}

/* ============================================================
   TWO-COLUMN GRID LAYOUTS (About Page)
   ============================================================ */
.two-col-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 40px;
    align-items: start;
}

.two-col-grid .text-col {
    grid-column: 1;
}

.two-col-grid .image-col {
    grid-column: 2;
    display: flex;
    align-items: center;
    height: 100%;
}

.two-col-grid .image-col img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* ============================================================
   ABOUT PAGE - WHO WE ARE IMAGE SIZING
   ============================================================ */
#who-we-are .image-col img {
    max-height: 80%;
    width: auto;
    margin: 0 auto;
    margin-top: 25px;
}

/* ============================================================
   IPAD MINI AND MOBILE - Hide images, text full width
   ============================================================ */
@media (max-width: 768px) {
    /* Hide images */
    #who-we-are .image-col,
    #technology .image-col {
        display: none;
    }
    
    /* Make text full width */
    #who-we-are .text-col,
    #technology .text-col {
        grid-column: 1 / -1;
    }
}

/* ============================================================
   QUICK LINKS SECTION - Tighter spacing
   ============================================================ */
.quick-links-section.section-white {
    padding-top: 0;
}

.section-white .quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 5px;
    align-items: stretch;
}

.section-white .quick-link {
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    text-align: left;
    border: 1px solid #e8e8e8;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.section-white .quick-link:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.section-white .quick-link h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #242524;
    margin-bottom: 10px;
    text-align: center;
}

.section-white .quick-link p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #555;
    margin-bottom: 16px;
    text-align: justify;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    flex-grow: 1;
}

.section-white .quick-link .btn {
    display: block;
    margin: 0 auto;
    width: fit-content;
    align-self: center;
    margin-top: auto;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 46px;
    min-width: 120px;
    white-space: nowrap;
}

.btn-primary {
    background: #0960fa;
    color: #ffffff;
}

.btn-primary:hover {
    background: #084fd4;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 96, 250, 0.3);
}

/* ============================================================
   ENHANCED AUDIO PLAYER (within section-white)
   ============================================================ */
.section-white .audio-player-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.enhanced-player {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    padding: 30px 35px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    width: 100%;
    max-width: 550px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.enhanced-player:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
}

/* Header */
.audio-player-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.audio-icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2353a4, #2a6ac9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(35, 83, 164, 0.3);
}

.audio-icon {
    width: 22px;
    height: 22px;
    color: #ffffff;
}

.audio-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #2353a4;
}

/* Progress Bar */
.audio-progress-wrapper {
    margin-bottom: 18px;
}

.progress-container {
    width: 100%;
    height: 8px;
    background: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2353a4, #fcc00f);
    width: 0%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 4px;
    transition: width 0.1s linear;
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: #fcc00f;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(252, 192, 15, 0.5);
    border: 2px solid #ffffff;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.progress-container:hover .progress-bar::after {
    opacity: 1;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    margin-top: 6px;
    font-family: 'Montserrat', monospace;
    font-weight: 500;
}

/* Controls Row */
.audio-controls-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Play/Pause Button */
.play-pause-btn.enhanced {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2353a4, #2a6ac9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(35, 83, 164, 0.35);
    margin-left: 5px;
}

.play-pause-btn.enhanced:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(35, 83, 164, 0.45);
}

.play-pause-btn.enhanced:active {
    transform: scale(0.95);
}

.play-pause-btn.enhanced svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.play-pause-btn.enhanced.playing {
    animation: pulse-glow 1.5s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 4px 15px rgba(35, 83, 164, 0.35);
    }
    50% {
        box-shadow: 0 4px 30px rgba(252, 192, 15, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(35, 83, 164, 0.35);
    }
}

/* Volume Control */
.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 100px;
}

.volume-btn {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: color 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.volume-btn:hover {
    color: #2353a4;
}

.volume-btn svg {
    width: 20px;
    height: 20px;
}

.volume-slider {
    flex: 1;
    min-width: 60px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: #ddd;
    border-radius: 2px;
    outline: none;
    transition: background 0.3s ease;
    margin: 8px 0;
    vertical-align: middle;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #2353a4;
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    margin-top: -6px;
}

.volume-slider::-webkit-slider-runnable-track {
    height: 4px;
    border-radius: 2px;
    background: #ddd;
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #2353a4;
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.volume-slider::-moz-range-track {
    height: 4px;
    border-radius: 2px;
    background: #ddd;
}

/* Speed Control */
.speed-control {
    flex-shrink: 0;
}

.speed-select {
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease;
}

.speed-select:hover {
    border-color: #2353a4;
}

.speed-select:focus {
    border-color: #2353a4;
    box-shadow: 0 0 0 2px rgba(35, 83, 164, 0.2);
}

/* ============================================================
   SOCIAL MEDIA SECTION (Blue)
   ============================================================ */
.section-blue {
    background-color: #1f3a93;
    padding: 10px 0 10px 0;
    margin: 0;
}

.section-blue .social-media-widget {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.section-blue .social-media-widget ul {
    list-style: none;
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.section-blue .social-media-widget a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 1;
}

.section-blue .social-media-widget a:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}

.section-blue .social-media-widget img {
    width: 40px;
    height: 40px;
    display: block;
}

/* ============================================================
   REPORT MODAL - Hidden by default
   ============================================================ */
#reportOverlay {
    display: none;
}

#reportOverlay.active {
    display: flex;
}
/* ============================================================
   SERVICES PAGE - SCROLL OFFSET FOR FIXED HEADER
   ============================================================ */
#advisory-services,
#data-analysis,
#research-services,
#embedded-operations {
    scroll-margin-top: 80px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background-color: #1f3a93;
    padding: 40px 0;
    color: #ffffff;
}

.site-footer .container {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-inner {
    text-align: center;
}

.footer-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 20px;
}

.footer-navigation a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 0;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    padding-bottom: 5px;
}

.footer-navigation a:hover {
    background: transparent;
    color: #daa106;
    border-bottom: 3px solid #daa106;
}

.footer-navigation a.active {
    background: transparent;
    color: #ffffff;
    border-bottom: 3px solid #ffffff;
    padding-bottom: 5px;
}

.footer-email {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    margin-bottom: 8px;
}

.footer-email a {
    color: #ffffff;
}

.footer-email a:hover {
    color: #daa106;
}

.footer-copyright {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
    color: #ffffff;
    margin-top: 20px;
}

/* ============================================================
   FOOTER SOCIAL ICONS
   ============================================================ */
.footer-social {
    margin-bottom: 16px;
}

.footer-social ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.footer-social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 1;
}

.footer-social ul li a:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}

.footer-social ul li img {
    width: 40px;
    height: 40px;
    display: block;
}

/* ============================================================
   RESPONSIVE - TABLET (768px - 991px)
   ============================================================ */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-section {
        min-height: 350px;
        height: 350px;
    }

    .hero-background {
        min-height: 350px;
        padding: 30px 0;
    }

    .two-col-grid {
        gap: 30px;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE (below 768px)
   ============================================================ */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: scaleY(0);
        transform-origin: top center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .main-navigation.open {
        transform: scaleY(1);
        opacity: 1;
        visibility: visible;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 4px;
    }

    .main-navigation a {
        display: block;
        padding: 12px 16px;
        font-size: 18px;
        text-align: center;
    }

    .main-navigation a.active {
        border-bottom: none;
        background-color: rgba(31, 58, 147, 0.1);
        padding-bottom: 12px;
    }

    .container {
        padding: 0 30px;
    }

    .site-header .container {
        padding: 0 30px;
    }

    .hero-section .container {
        padding: 0 20px;
    }

    .site-footer .container {
        padding: 0 20px;
    }

    .hero-section {
        min-height: 300px;
        height: 300px;
    }

    .hero-background {
        min-height: 300px;
        padding: 30px 0;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .section-white {
        padding: 12px 0 12px 0;
    }

    .section-white h2,
    .section-white h3 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .section-white p {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .quick-links-section.section-white {
        padding-top: 0;
    }

    .section-white .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-white .quick-link {
        padding: 14px 16px;
    }

    .section-white .quick-link h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .section-white .quick-link p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .icon-list li {
        padding-left: 0;
        min-height: 24px;
        gap: 10px;
    }

    .icon-list li i {
        font-size: 18px;
        width: 18px;
        min-width: 18px;
        top: 3px;
    }

    .icon-list li .list-text {
        font-size: 15px;
    }

    .section-white ul li {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .enhanced-player {
        padding: 20px;
    }

    .audio-title {
        font-size: 16px;
    }

    .audio-controls-row {
        gap: 10px;
    }

    .play-pause-btn.enhanced {
        width: 36px;
        height: 36px;
        margin-left: 3px;
    }

    .play-pause-btn.enhanced svg {
        width: 18px;
        height: 18px;
    }

    .volume-control {
        min-width: 70px;
    }

    .section-white ul {
        padding-left: 0;
    }

    .section-white ul li {
        padding-left: 15px;
        text-indent: -15px;
    }

    .section-blue .social-media-widget ul {
        gap: 15px;
    }

    .section-blue .social-media-widget img {
        width: 32px;
        height: 32px;
    }

    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: start;
    }
    .two-col-grid .text-col {
        grid-column: 1;
        order: 1;
    }
    .two-col-grid .image-col {
        grid-column: 1;
        order: 2;
    }
    .nav-toggle {
        display: flex;
    }
    /* Mobile-only text centering */
    .mobile-center {
        text-align: center !important;
        display: block !important;
    }
    /* Reduce Welcome heading font size */
    #welcome h2 {
        font-size: 20px !important;
    }
  }  

/* ============================================================
   RESPONSIVE - MOBILE SMALL (below 480px)
   ============================================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .site-header .container {
        padding: 0 20px;
    }

    .hero-section .container {
        padding: 0 15px;
    }

    .site-footer .container {
        padding: 0 15px;
    }

    .hero-section {
        min-height: 250px;
        height: 250px;
    }

    .hero-background {
        min-height: 250px;
        padding: 20px 0;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .section-white {
        padding: 10px 0 10px 0;
    }

    .section-white h2,
    .section-white h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .section-white p {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .quick-links-section.section-white {
        padding-top: 0;
    }

    .section-white .quick-links-grid {
        margin-top: 5px;
    }

    .section-white .quick-link {
        padding: 12px 14px;
    }

    .section-white .quick-link h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .section-white .quick-link p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .icon-list li {
        padding-left: 0;
        min-height: 22px;
        margin-bottom: 10px;
        gap: 8px;
    }

    .icon-list li i {
        font-size: 16px;
        width: 16px;
        min-width: 16px;
        top: 2px;
    }

    .icon-list li .list-text {
        font-size: 14px;
    }

    .section-white ul li {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .section-blue .social-media-widget ul {
        gap: 12px;
    }

    .section-blue .social-media-widget img {
        width: 28px;
        height: 28px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 13px;
        min-height: 40px;
        min-width: 100px;
    }

    .section-white ul {
        padding-left: 0;
    }

    .section-white ul li {
        padding-left: 12px;
        text-indent: -12px;
    }

    .enhanced-player {
        padding: 16px;
    }

    .audio-title {
        font-size: 14px;
    }

    .audio-controls-row {
        gap: 8px;
        flex-wrap: wrap;
    }

    .play-pause-btn.enhanced {
        width: 32px;
        height: 32px;
        margin-left: 2px;
    }

    .play-pause-btn.enhanced svg {
        width: 16px;
        height: 16px;
    }

    .volume-control {
        min-width: 60px;
        flex: 0 1 auto;
    }

    .speed-select {
        font-size: 12px;
        padding: 3px 6px;
    }
}

/* ============================================================
   TABLET NAVIGATION FIX - ONE ROW
   ============================================================ */
@media (min-width: 768px) and (max-width: 991px) {
    .main-navigation ul {
        gap: 4px;
    }

    .main-navigation a {
        font-size: 14px;
        padding: 6px 10px;
    }

    .logo img {
        max-width: 180px;
    }

    .site-header .container {
        padding: 0 20px;
    }
}

/* ============================================================
   REPORT LOADING - Text with Pulsing Dots
   ============================================================ */
.report-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    flex-direction: column;
    height: 100%;
    min-height: 200px;
}

.report-loading .loading-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #555;
    letter-spacing: 0.3px;
}

.report-loading .loading-dots {
    display: inline-block;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1f3a93;
    min-width: 40px;
    text-align: left;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f3a93;
    color: #ffffff;
    padding: 14px 24px;
    z-index: 9998;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-text {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin: 0
   } 