:root {
    /* Brand Colors */
    --primary-blue: #0e2f74;
    --primary-blue-dark: #0a2560;
    --accent-orange: #f56c0a;
    --accent-orange-dark: #d85c09;

    /* Text Colors */
    --text-main: #222222;
    --text-muted: #6c757d;
    --text-light: #cccccc;
    --text-grey: #999999;

    /* Background Colors */
    --bg-light: #f4f7f9;
    /* More visible light gray */
    --bg-white: #ffffff;
    --footer-bg: #0e1e3f;
    --footer-bottom-bg: #0a1733;
    --footer-border: rgba(255, 255, 255, 0.1);
    --border-divider: #e9ecef;

    /* Typography Settings */
    --font-primary: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-secondary: 'Roboto', sans-serif;

    /* Heading Sizes */
    --h1-size: clamp(1.8rem, 3.5vw, 2.4rem);
    /* Reduced globally */
    --h2-size: clamp(1.5rem, 3vw, 2rem);
    /* Reduced globally */
    --h3-size: clamp(1.5rem, 2.5vw, 1.8rem);
    --h4-size: clamp(1.1rem, 1.8vw, 1.3rem);
    --h5-size: 1rem;
    --h6-size: 0.85rem;

    /* Global Radius & Spacing */
    --border-radius-sm: 4px;
    --border-radius-btn: 6px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-pill: 50px;

    /* Global Shadows (Boxes) */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(14, 47, 116, 0.08);
    --shadow-lg: 0 10px 25px rgba(14, 47, 116, 0.15);
    --shadow-hover: 0 15px 35px rgba(14, 47, 116, 0.2);

    /* Button Configurations */
    --btn-padding-y: 0.5rem;
    --btn-padding-x: 1.5rem;
    --btn-font-weight: 600;
    --btn-font-size: 0.85rem;
    /* Smaller button font */
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Roboto:wght@400;500&display=swap');

/* Bootstrap Overrides */
.text-primary {
    color: var(--primary-blue-dark) !important;
}

.bg-primary {
    background-color: var(--primary-blue-dark) !important;
}

.text-accent {
    color: var(--accent-orange) !important;
}

.bg-accent {
    background-color: var(--accent-orange) !important;
}

body {
    font-family: var(--font-primary);
    color: #000000;
    /* Black color as requested */
    background-color: var(--bg-white);
    line-height: 1.6;
    /* Consistent throughout */
    font-size: 1.05rem;
    /* Larger font as requested */
}

body {
    overflow-x: hidden;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5em;
    line-height: 1.2;
}

h1 {
    font-size: var(--h1-size);
}

h2 {
    font-size: var(--h2-size);
}

h3 {
    font-size: var(--h3-size);
}

h4 {
    font-size: var(--h4-size);
}

h5 {
    font-size: var(--h5-size);
}

h6 {
    font-size: var(--h6-size);
}


/* Standard Box / Card styles */
.global-box {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Section Alternate Backgrounds */
.section-white {
    background-color: var(--bg-white);
}

.section-light {
    background-color: #f4f7f9;
}

.section-title-small {
    font-size: var(--h2-size);
}

.text-black {
    color: #000000 !important;
}

.lh-base {
    line-height: 1.5 !important;
}

.small-text {
    font-size: 0.85rem;
}

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

/* Buttons (Radius 6px) */
.btn {
    border-radius: var(--border-radius-btn);
    padding: var(--btn-padding-y) var(--btn-padding-x);
    font-weight: var(--btn-font-weight);
    font-size: var(--btn-font-size);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
    /* Prevent text wrapping inside buttons */
}

/* Button Classes Options */
.btn-dark-blue {
    background-color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    color: var(--bg-white);
}

.btn-dark-blue:hover,
.btn-dark-blue:focus {
    background-color: #061840;
    /* Even darker blue */
    border-color: #061840;
    color: var(--bg-white);
}

.btn-dark-accent {
    background-color: var(--accent-orange-dark);
    border-color: var(--accent-orange-dark);
    color: var(--bg-white);
}

.btn-dark-accent:hover,
.btn-dark-accent:focus {
    background-color: #b04906;
    /* Even darker orange */
    border-color: #b04906;
    color: var(--bg-white);
}

.btn-outline-dark-blue {
    color: var(--primary-blue-dark);
    border: 2px solid var(--primary-blue-dark);
    background: transparent;
}

.btn-outline-dark-blue:hover {
    background-color: var(--primary-blue-dark);
    color: var(--bg-white);
}

.btn-outline-dark-accent {
    color: var(--accent-orange-dark);
    border: 2px solid var(--accent-orange-dark);
    background: transparent;
}

.btn-outline-dark-accent:hover {
    background-color: var(--accent-orange-dark);
    color: var(--bg-white);
}

/* Keep old classes mapping to new styles for backward compatibility */
.btn-primary {
    @extend .btn-dark-blue;
    background-color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: #061840;
    border-color: #061840;
    color: var(--bg-white);
}

.btn-accent {
    background-color: var(--accent-orange-dark);
    border-color: var(--accent-orange-dark);
    color: var(--bg-white);
}

.btn-accent:hover {
    background-color: #b04906;
    border-color: #b04906;
    color: var(--bg-white);
}

.btn-outline-primary {
    color: var(--primary-blue-dark);
    border: 2px solid var(--primary-blue-dark);
    background: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue-dark);
    color: var(--bg-white);
}

/* Top Header */
.top-header {
    background-color: var(--primary-blue-dark);
    color: var(--bg-white);
    font-size: 0.85rem;
    padding: 8px 0;
}

/* Fix mobile wrap */
.top-header .container {
    row-gap: 10px;
}

.top-header .d-flex {
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .top-header .d-flex {
        justify-content: flex-start;
    }
}

.top-header a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-header a i {
    color: var(--bg-white);
    transition: all 0.3s ease;
}

.top-header a:hover {
    color: var(--accent-orange);
}

.top-header a:hover i {
    color: var(--accent-orange);
}

/* Main Header */
.site-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-divider);
    transition: all 0.3s ease;
}

/* Remove extra padding from navbar */
.site-header .navbar {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.site-header.sticky-top {
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

/* Enhanced Animated Sticky Header */
.site-header.is-sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    animation: headerRevealSlide 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.site-header.is-sticky .navbar-brand img {
    height: 65px; /* Slight resize on sticky to maximize viewport */
}

@keyframes headerRevealSlide {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-brand img {
    height: 75px;
    /* Larger logo */
    max-width: 100%;
    transition: transform 0.3s;
    padding: 5px 0;
}

/*.navbar-brand:hover img {
    transform: scale(1.02);
}*/

.navbar-nav {
    flex-wrap: wrap;
    /* Allow wrapping to second line on smaller screens */
    justify-content: center;
}

.navbar-nav .nav-link {
    color: var(--text-main);
    font-weight: 600;
    padding: 1rem 0.7rem !important;
    /* Slightly tighter padding */
    font-size: 0.85rem;
    transition: color 0.3s ease;
    white-space: nowrap;
    /* Prevent "Scientific Session" from breaking into two lines */
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-orange);
    /* Change color on hover */
}

/* Dropdown styling */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
    padding: 0;
    margin-top: 15px;
    /* Push down to avoid overlap */
    border-top: 3px solid var(--accent-orange);
    animation: fadeIn 0.3s ease;
    z-index: 1050;
    /* Ensure it stays above other elements */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute !important;
        margin-top: 17px !important;
    }
}

.dropdown-item {
    font-size: 0.85rem;
    /* Smaller font */
    padding: 0.7rem 1.2rem;
    font-weight: 500;
    color: var(--text-main);
    transition: all 0.2s;
    border-bottom: 1px solid var(--border-divider);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: var(--bg-light);
    /* Background color on hover/active */
    color: var(--accent-orange) !important;
    padding-left: 1.5rem;
}

/* Footer Aesthetics */
.main-footer {
    background-color: var(--footer-bg);
    color: var(--text-light);
    font-size: 0.95rem;
    position: relative;
}

.footer-logo-img {
    max-height: 55px;
    max-width: 180px;
    object-fit: contain;
}

/* Subtle pattern overlay on footer */
.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.main-footer h5 {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
}

.main-footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-orange);
    border-radius: var(--border-radius-pill);
}

.main-footer .footer-text {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.main-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.85rem;
    /* Smaller font for links */
}

.main-footer a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.main-footer ul li {
    margin-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.85rem;
}

.main-footer ul li:last-child {
    border-bottom: none;
}

.main-footer ul li a i {
    margin-right: 10px;
    font-size: 0.8rem;
    color: var(--accent-orange);
}

.footer-bottom-bar {
    background-color: var(--footer-bottom-bg);
    border-top: 1px solid var(--footer-border);
    padding: 20px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-bottom-bar a {
    color: rgba(255, 255, 255, 0.9);
    /* More visible */
    font-weight: 500;
}

.footer-bottom-bar a:hover {
    color: var(--accent-orange);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--bg-white);
    border-radius: var(--border-radius-pill);
    margin-right: 12px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(245, 108, 10, 0.3);
    color: var(--bg-white) !important; /* Override footer link hover color */
    padding-left: 0 !important; /* Prevent shifting left introduced by .main-footer a:hover */
}

.newsletter-form .form-control {
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    background: var(--bg-white);
    /* White background */
    border: 1px solid var(--bg-white);
    color: var(--text-main);
    padding: 0.6rem 1rem;
}

.newsletter-form .form-control:focus {
    background: var(--bg-white);
    box-shadow: none;
    border-color: var(--accent-orange);
}

.newsletter-form .btn {
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    padding: 0.6rem 1.2rem;
}

/* Logos & Badges */
.dmca-logo,
.cme-cpd-logo {
    background: var(--bg-white);
    border-radius: 6px;
    padding: 6px;
    height: 75px !important;
    object-fit: contain;
}

.secure-payment-logo {
    border-radius: 6px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    /* Subtle background for padding to work if transparent */
    max-width: 220px !important;
}

.footer-logos img,
.logo-accreditation-wrapper img {
    border-radius: var(--border-radius-sm);
    transition: transform 0.3s;
}

.logo-accreditation-wrapper img:hover {
    transform: scale(1.05);
}

/* Back to Top */
.back-to-top-btn {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.back-to-top-btn:hover {
    background-color: var(--accent-orange-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Shared Page Components (Banner, Scroller, etc.)
   ========================================================================== */

.page-banner {
    background-color: var(--primary-blue-dark);
    background-image: linear-gradient(rgba(10, 37, 88, 0.8), rgba(10, 37, 88, 0.8)), url('https://cognitionconferences.com/wp-content/uploads/2023/10/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.breadcrumb {
    background: transparent !important;
    padding: 0;
    margin-bottom: 0; /* Standardized to 0 to facilitate exact vertical flex alignment */
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: flex;
    align-items: center;
    padding-bottom: 1px; /* Minor optic correct */
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.breadcrumb-item a:hover {
    color: var(--accent-orange);
}

.breadcrumb-item.active {
    color: var(--bg-white);
    font-size: 0.85rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
    content: ">" !important;
}

.page-title {
    color: var(--bg-white);
    font-weight: 700;
    margin: 0;
}

@media (min-width: 768px) {
    .page-banner .container {
        display: flex;
        flex-direction: row-reverse; /* Title Left, Breadcrumb Right */
        justify-content: space-between;
        align-items: center;
        text-align: left !important;
    }
    
    .page-banner .page-title {
        margin: 0;
    }
}

/* Round Navigation Arrows */
.scroller-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    border: 1px solid #cbd5e1 !important;
    color: var(--primary-blue-dark) !important;
    background: white !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroller-btn:hover {
    background: var(--primary-blue-dark) !important;
    border-color: var(--primary-blue-dark) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(10, 37, 88, 0.15);
}

/* CSS-Only Horizontal Scroller */
.horizontal-scroll-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.horizontal-scroll-item {
    flex: 0 0 300px;
    scroll-snap-align: start;
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

/* ==========================================================================
   Utility Classes — Replaces Inline Styles
   ========================================================================== */

/* Section Padding & Backgrounds */
.section-white {
    padding: 4rem 0;
    background-color: #ffffff;
}

.section-light {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

/* Max-width constraints */
.max-w-700 {
    max-width: 700px;
}

.max-w-800 {
    max-width: 800px;
}

.max-w-600 {
    max-width: 600px;
}

/* Font size utilities */
.fs-065rem {
    font-size: 0.65rem !important;
}

.fs-075rem {
    font-size: 0.75rem !important;
}

.fs-085rem {
    font-size: 0.85rem !important;
}

.fs-09rem {
    font-size: 0.9rem !important;
}

.fs-095rem {
    font-size: 0.95rem !important;
}

.fs-105rem {
    font-size: 1.05rem !important;
}

.fs-12rem {
    font-size: 1.2rem !important;
}

/* Letter spacing */
.ls-1 {
    letter-spacing: 1px !important;
}

.ls-05 {
    letter-spacing: 0.5px !important;
}

.letter-spacing-1 {
    letter-spacing: 1px !important;
}

.letter-spacing-2 {
    letter-spacing: 2px !important;
}

/* Loading spinner — centered with min-height */
.spinner-center {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.spinner-center .spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Spinner in-page (non-full-page) */
.loader-wrapper {
    padding: 3rem 0;
    text-align: center;
}

.loader-wrapper .spinner-border {
    width: 3rem;
    height: 3rem;
}

/* [v-cloak] global reset */
[v-cloak] {
    display: none;
}

/* ==========================================================================
   Download Pages (brochure / abstract-book / scientific-program)
   ========================================================================== */
.download-page-desc {
    max-width: 680px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.download-form-card {
    max-width: 680px;
    border-top: 5px solid var(--accent-orange) !important;
}

.download-form-card .form-control:focus,
.download-form-card .form-select:focus {
    border-color: var(--accent-orange) !important;
    box-shadow: 0 0 0 0.2rem rgba(245, 108, 10, 0.15) !important;
}

.download-submit-btn {
    max-width: 320px;
    background-color: var(--accent-orange);
    border-radius: 8px;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.download-submit-btn:hover {
    background-color: var(--accent-orange-dark);
}

.download-footer-link {
    color: var(--accent-orange);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.download-footer-link:hover {
    color: var(--accent-orange-dark);
}

/* ==========================================================================
   Sidebar Download Buttons (Scientific Sessions, About, etc.)
   ========================================================================== */
.sidebar-download-btn {
    font-size: 0.75rem;
    background: #f0f4f8;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.sidebar-download-btn:hover {
    background: var(--primary-blue-dark);
    color: #fff !important;
}

.sidebar-download-btn i {
    color: var(--accent-orange);
}

/* ==========================================================================
   About Page — Countdown Timer
   ========================================================================== */
.countdown-card {
    background-color: var(--primary-blue-dark);
}

.timer-unit {
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--border-radius-md);
    padding: 0.5rem;
    min-width: 60px;
}

.timer-unit .timer-label {
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Theme box with accent left border */
.theme-box {
    border-radius: 5px;
    border-left: 5px solid var(--accent-orange) !important;
}

.theme-label {
    font-size: 0.85rem;
}

.theme-value {
    font-size: 0.95rem;
}

/* Info label (DATE / VENUE) */
.info-label {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-value {
    font-size: 0.85rem;
}

/* CTA buttons on about page */
.about-cta-btn {
    font-size: 0.85rem;
}

/* ==========================================================================
   Newsletter Status (Footer)
   ========================================================================== */
.newsletter-status {
    display: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
}

/* ==========================================================================
   Session List Cards (Homepage)
   ========================================================================== */
.session-item-card {
    border-left: 4px solid var(--accent-orange) !important;
}

.session-item-num {
    font-size: 0.9rem;
    min-width: fit-content;
    color: var(--accent-orange);
    font-weight: 700;
}

.session-item-title {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* ==========================================================================
   Committee / Speaker detail card
   ========================================================================== */
.member-bio {
    font-size: 0.95rem;
    line-height: 1.8;
}

.member-role-badge {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}


textarea.form-control {
    min-height: 320px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 576px) {
    .top-header {
        display: none;
    }

    .top-header .top-contact-info {
        flex-direction: column;
        align-items: center;
        gap: 4px !important;
    }

    .top-header .social-links {
        justify-content: center;
    }

    .navbar-brand img {
        height: 65px;
    }

    .page-banner {
        padding: 50px 0;
    }

    .page-banner .page-title {
        font-size: 1.5rem;
    }

    .countdown-card {
        padding: 1.5rem !important;
    }

    .timer-unit {
        min-width: 50px;
    }
}

@media (max-width: 768px) {
    .main-footer h5 {
        margin-bottom: 1rem;
    }

    .social-icons a {
        width: 36px;
        height: 36px;
    }

    .navbar-collapse {
        padding-bottom: 2rem;
    }

    .contact-info-panel {
        padding: 15px !important;
    }

    textarea.form-control {
        min-height: 170px;
    }
}

/* Back to Top button */
.back-to-top-btn {
    bottom: 80px;
    right: 30px;
    display: none;
    z-index: 999;
    width: 45px;
    height: 45px;
}

.footer-logo-hidden {
    display: none;
}


.committee-slider.mb-5.slick-initialized.slick-slider,
.speakers-slider.mb-5.slick-initialized.slick-slider,
.videos-slider.mb-5.slick-initialized.slick-slider,
.contact-card.mb-5.shadow-sm.border.rounded.overflow-hidden {
    margin-bottom: 0 !important;
}

/* --- Custom Responsive Paddings --- */
@media (max-width: 767px) {
    .section-white,
    .section-light {
        padding: 3rem 15px !important; /* Reduced top/bottom, added horizontal breathing room */
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
    .slick-slide img {
        height: auto !important;
    }
}

/* --- Universal Biography Text Justification --- */
.speaker-bio-content, 
.speaker-bio-content p,
.committee-bio-section, 
.committee-bio-section p {
    text-align: justify !important;
    hyphens: auto; /* Improves justify quality on narrow viewports */
}