/* --- Variables & Theme Settings --- */
:root {
    --primary: #0f172a;      
    --accent: #2563eb;       
    --accent-light: #eff6ff; 
    --gold: #d97706;         
    --dark: #334155;         
    --light: #f8fafc;        
    --white: #ffffff;
    --border: #e2e8f0;       
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Resets --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font);
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
}

body {
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: var(--primary);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
}

.bg-light {
    background-color: var(--light);
}

/* --- Grid & Layout Utilities --- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .section {
        padding: 60px 0;
    }
}

/* --- Header & Navigation with Clickable Logos --- */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.header-logo-link {
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.header-logo-link:hover {
    transform: scale(1.05);
}

.header-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.logo-divider {
    width: 1px;
    height: 32px;
    background-color: var(--border);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-main {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-link {
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
}

.nav-link:hover, .nav-link.active {
    background-color: var(--accent-light);
    color: var(--accent);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--primary);
    margin: 5px auto;
    transition: var(--transition);
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .nav-holder {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    }

    .nav-holder.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }

    .nav-link {
        display: block;
        width: 100%;
    }
}

/* --- Hero Section --- */
.hero-section {
    background-color: var(--primary);
    background-image: 
        radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(217, 119, 6, 0.05) 0px, transparent 50%);
    color: var(--white);
    padding: 120px 0;
    border-bottom: none;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    color: var(--white);
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--border);
    opacity: 0.8;
    font-weight: 500;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}

.hero-lead {
    font-size: 1.15rem;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #1d4ed8;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(12px);
}

.hero-meta-item {
    margin-bottom: 24px;
}

.hero-meta-item:last-child {
    margin-bottom: 0;
}

.meta-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.5;
    margin-bottom: 6px;
}

.meta-val {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.meta-sub {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 2px;
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
}

/* --- Premium Objectives Asymmetric Split-Layout --- */
.objectives-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 968px) {
    .objectives-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Left panel: Quote/Vision */
.objectives-vision-panel {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px -5px rgba(30, 58, 138, 0.2);
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

.vision-badge {
    display: inline-block;
    background-color: var(--gold);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.vision-quote {
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 500;
    font-style: italic;
    color: #f1f5f9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Right panel: Steps/Milestones */
.objectives-list-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.objective-milestone-item {
    display: flex;
    gap: 24px;
    background-color: var(--light);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.objective-milestone-item:hover {
    background-color: var(--white);
    border-color: var(--accent);
    transform: translateX(6px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.milestone-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.6;
    line-height: 1;
}

.milestone-text h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--primary);
}

.milestone-text p {
    font-size: 0.9rem;
    color: #64748b;
}

/* --- Enhanced Speakers Section --- */
.card-speaker {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.card-speaker:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.speaker-image-container {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin-bottom: 20px;
    overflow: hidden;
    border: 3px solid var(--accent-light);
    background-color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.card-speaker:hover .speaker-image-container {
    border-color: var(--accent);
    transform: scale(1.05);
}

.speaker-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-name {
    font-size: 1.15rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.speaker-name a {
    color: var(--primary);
    border-bottom: 1px dashed transparent;
}

.speaker-name a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.speaker-title {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.speaker-org {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 16px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-bio {
    font-size: 0.85rem;
    color: #64748b;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    text-align: left;
    margin-bottom: 24px;
    flex-grow: 1;
}

.speaker-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-top: 1px solid var(--border);
    padding-top: 15px;
}

.btn-open-modal {
    background-color: var(--accent-light);
    color: var(--accent);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-open-modal:hover {
    background-color: var(--accent);
    color: var(--white);
}

.hidden-modal-data {
    display: none;
}

/* --- Program & Timeline Section --- */
.program-column {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.day-badge {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.timeline {
    position: relative;
    border-left: 2px solid var(--border);
    padding-left: 32px;
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--border);
    transition: var(--transition);
}

.timeline-time {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 6px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #64748b;
}

/* Timeline highlight states */
.timeline-item.highlight::before {
    background-color: var(--gold);
    border-color: var(--gold);
}

.timeline-item.workshop::before {
    background-color: var(--accent);
    border-color: var(--accent);
}

.timeline-item.workshop .timeline-content {
    background-color: var(--accent-light);
    padding: 16px;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
}

/* --- Committees Premium Section --- */
.committees-premium-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

@media (max-width: 968px) {
    .committees-premium-layout {
        grid-template-columns: 1fr;
    }
}

.committee-block-premium {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.committee-block-premium:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.committee-block-header {
    border-bottom: 2px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.committee-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 50px;
}

/* Asymmetric Accent Bars */
.organizing-accent {
    border-top: 4px solid var(--accent);
}
.organizing-accent .committee-badge {
    background-color: var(--accent-light);
    color: var(--accent);
}

.steering-accent {
    border-top: 4px solid var(--gold);
}
.steering-accent .committee-badge {
    background-color: #fef3c7;
    color: var(--gold);
}

.committee-block-header h3 {
    font-size: 1.4rem;
    color: var(--primary);
}

/* Modern Board Node layout */
.committee-members-board {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.board-member-node {
    background-color: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}

.board-member-node:hover {
    background-color: var(--white);
    border-color: var(--border);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.member-node-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

.member-node-inst {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 4px;
    font-weight: 500;
}

.member-node-inst.font-gold {
    color: var(--gold);
    font-weight: 600;
}

.member-node-inst.font-teal {
    color: #0d9488;
    font-weight: 600;
}

/* --- Premium Unified Venue & Map Dashboard --- */
.venue-dashboard {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@media (max-width: 968px) {
    .venue-dashboard {
        grid-template-columns: 1fr;
    }
}

/* Left panel: Venue address blocks */
.venue-details-panel {
    background-color: #0f172a; /* Tech Dark Theme */
    color: var(--white);
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.venue-block {
    display: flex;
    flex-direction: column;
}

.venue-block-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 10px;
}

.venue-details-panel h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.venue-block-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: #f1f5f9;
}

.venue-block-text.highlight-yellow {
    color: #fbbf24;
    font-weight: 700;
}

.venue-block-sub {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 4px;
}

.venue-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
}

.venue-email-container {
    margin-top: 16px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 16px;
    border-radius: var(--radius-sm);
}

.venue-email-container span {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 4px;
}

.venue-email-link {
    color: var(--accent-light);
    font-weight: 700;
    font-size: 1.05rem;
}

.venue-email-link:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Right panel: Map */
.venue-map-panel {
    position: relative;
    width: 100%;
    height: 100%;
}

.venue-map-panel iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* --- Premium Sponsors Section --- */
.sponsors-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
    padding: 80px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.sponsors-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sponsors-title {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.03em;
    position: relative;
    padding-bottom: 12px;
}

.sponsors-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.sponsors-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 600px;
}

.sponsor-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 36px 48px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -2px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    display: inline-block;
    max-width: 480px;
}

.sponsor-card a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.sponsor-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
}

.sponsor-img-element {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.sponsor-caption {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    line-height: 1.5;
    letter-spacing: 0.02em;
    transition: var(--transition);
    max-width: 320px;
}

/* Hover States and Interactions */
.sponsor-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.08), 0 10px 10px -5px rgba(37, 99, 235, 0.03);
}

.sponsor-card:hover .sponsor-img-element {
    filter: none;
    opacity: 1;
}

.sponsor-card:hover .sponsor-caption {
    color: var(--primary);
}

/* --- Premium Modal (Academic Sheet Style) --- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 850px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 48px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
    animation: modalSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: var(--light);
    border: 1px solid var(--border);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background-color: #f1f5f9;
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-header-block {
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    margin-bottom: 36px;
    margin-right: 40px;
}

.modal-header-block h3 {
    font-size: 2rem;
    margin-bottom: 6px;
    color: var(--primary);
}

#modalSpeakerTitle {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
}

.modal-body-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.modal-section {
    background-color: var(--light);
    border: 1px solid var(--border);
    padding: 28px;
    border-radius: var(--radius-md);
}

.modal-section h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
}

.modal-section h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.modal-section p {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.7;
    text-align: justify;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--primary);
    color: #94a3b8;
    padding: 60px 0;
    text-align: center;
    border-top: none;
}

.main-footer p {
    margin-bottom: 8px;
}

.main-footer strong {
    color: var(--white);
}

.footer-copyright {
    font-size: 0.8rem;
    margin-top: 24px;
    opacity: 0.6;
}