/* ============================================
   ezber.css - İSG Ezber Kutuları & Tablolar
   Tüm stiller mobil uyumlu, renkli ve okunaklı
   ============================================ */

/* ---------- GENEL RESET & TİPOGRAFİ ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
    background: #f8fafc;
    color: #1e293b;
    margin: 0;
    padding: 30px 20px;
    line-height: 1.6;
}

/* ---------- KONTEYNER ---------- */
.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ---------- BAŞLIK ---------- */
.baslik {
    text-align: center;
    margin-bottom: 45px;
}
.baslik h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.baslik h1 span {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    padding: 6px 24px;
    border-radius: 60px;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}
.baslik p {
    font-size: 1.15rem;
    color: #475569;
    margin-top: 8px;
}

/* ---------- KART GRİDİ ---------- */
.kart-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin: 20px 0;
}

/* ---------- HER BİR KART ---------- */
.konu-kart {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px 16px 20px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.konu-kart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 24px 24px 0 0;
}
.konu-kart:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

/* ---------- KART İKON ---------- */
.ikon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 12px;
    transition: 0.2s;
    flex-shrink: 0;
}
.konu-kart:hover .ikon {
    transform: scale(1.08);
}

/* ---------- KART METİN ---------- */
.konu-kart h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
    line-height: 1.3;
}
.konu-kart .aciklama {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.4;
    margin: 4px 0 10px 0;
    flex: 1;
}
.konu-kart .git-buton {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.75rem;
    color: #fff;
    transition: 0.2s;
    margin-top: 4px;
    border: none;
    cursor: pointer;
}
.konu-kart:hover .git-buton {
    transform: scale(1.04);
}

/* ---------- 25 RENK TEMASI ---------- */
.kart-1::before { background: #2563eb; }
.kart-1 .ikon { background: #eff6ff; color: #2563eb; }
.kart-1:hover { border-color: #2563eb; }
.kart-1 .git-buton { background: #2563eb; }
.kart-1:hover .git-buton { background: #1d4ed8; }

.kart-2::before { background: #dc2626; }
.kart-2 .ikon { background: #fef2f2; color: #dc2626; }
.kart-2:hover { border-color: #dc2626; }
.kart-2 .git-buton { background: #dc2626; }
.kart-2:hover .git-buton { background: #b91c1c; }

.kart-3::before { background: #16a34a; }
.kart-3 .ikon { background: #f0fdf4; color: #16a34a; }
.kart-3:hover { border-color: #16a34a; }
.kart-3 .git-buton { background: #16a34a; }
.kart-3:hover .git-buton { background: #15803d; }

.kart-4::before { background: #7c3aed; }
.kart-4 .ikon { background: #f5f3ff; color: #7c3aed; }
.kart-4:hover { border-color: #7c3aed; }
.kart-4 .git-buton { background: #7c3aed; }
.kart-4:hover .git-buton { background: #6d28d9; }

.kart-5::before { background: #ea580c; }
.kart-5 .ikon { background: #fff7ed; color: #ea580c; }
.kart-5:hover { border-color: #ea580c; }
.kart-5 .git-buton { background: #ea580c; }
.kart-5:hover .git-buton { background: #c2410c; }

.kart-6::before { background: #0ea5e9; }
.kart-6 .ikon { background: #f0f9ff; color: #0ea5e9; }
.kart-6:hover { border-color: #0ea5e9; }
.kart-6 .git-buton { background: #0ea5e9; }
.kart-6:hover .git-buton { background: #0284c7; }

.kart-7::before { background: #eab308; }
.kart-7 .ikon { background: #fffbeb; color: #eab308; }
.kart-7:hover { border-color: #eab308; }
.kart-7 .git-buton { background: #eab308; }
.kart-7:hover .git-buton { background: #ca8a04; }

.kart-8::before { background: #ec4899; }
.kart-8 .ikon { background: #fdf2f8; color: #ec4899; }
.kart-8:hover { border-color: #ec4899; }
.kart-8 .git-buton { background: #ec4899; }
.kart-8:hover .git-buton { background: #db2777; }

.kart-9::before { background: #f97316; }
.kart-9 .ikon { background: #fff7ed; color: #f97316; }
.kart-9:hover { border-color: #f97316; }
.kart-9 .git-buton { background: #f97316; }
.kart-9:hover .git-buton { background: #ea580c; }

.kart-10::before { background: #be185d; }
.kart-10 .ikon { background: #fdf2f8; color: #be185d; }
.kart-10:hover { border-color: #be185d; }
.kart-10 .git-buton { background: #be185d; }
.kart-10:hover .git-buton { background: #9d174d; }

.kart-11::before { background: #dc2626; }
.kart-11 .ikon { background: #fef2f2; color: #dc2626; }
.kart-11:hover { border-color: #dc2626; }
.kart-11 .git-buton { background: #dc2626; }
.kart-11:hover .git-buton { background: #b91c1c; }

.kart-12::before { background: #334155; }
.kart-12 .ikon { background: #f1f5f9; color: #334155; }
.kart-12:hover { border-color: #334155; }
.kart-12 .git-buton { background: #334155; }
.kart-12:hover .git-buton { background: #1e293b; }

.kart-13::before { background: #f59e0b; }
.kart-13 .ikon { background: #fffbeb; color: #f59e0b; }
.kart-13:hover { border-color: #f59e0b; }
.kart-13 .git-buton { background: #f59e0b; }
.kart-13:hover .git-buton { background: #d97706; }

.kart-14::before { background: #22c55e; }
.kart-14 .ikon { background: #f0fdf4; color: #22c55e; }
.kart-14:hover { border-color: #22c55e; }
.kart-14 .git-buton { background: #22c55e; }
.kart-14:hover .git-buton { background: #16a34a; }

.kart-15::before { background: #8b5cf6; }
.kart-15 .ikon { background: #f5f3ff; color: #8b5cf6; }
.kart-15:hover { border-color: #8b5cf6; }
.kart-15 .git-buton { background: #8b5cf6; }
.kart-15:hover .git-buton { background: #7c3aed; }

.kart-16::before { background: #14b8a6; }
.kart-16 .ikon { background: #f0fdfa; color: #14b8a6; }
.kart-16:hover { border-color: #14b8a6; }
.kart-16 .git-buton { background: #14b8a6; }
.kart-16:hover .git-buton { background: #0d9488; }

.kart-17::before { background: #e67e22; }
.kart-17 .ikon { background: #fdf2e9; color: #e67e22; }
.kart-17:hover { border-color: #e67e22; }
.kart-17 .git-buton { background: #e67e22; }
.kart-17:hover .git-buton { background: #d35400; }

.kart-18::before { background: #0d9488; }
.kart-18 .ikon { background: #f0fdfa; color: #0d9488; }
.kart-18:hover { border-color: #0d9488; }
.kart-18 .git-buton { background: #0d9488; }
.kart-18:hover .git-buton { background: #0f766e; }

.kart-19::before { background: #991b1b; }
.kart-19 .ikon { background: #fef2f2; color: #991b1b; }
.kart-19:hover { border-color: #991b1b; }
.kart-19 .git-buton { background: #991b1b; }
.kart-19:hover .git-buton { background: #7f1d1d; }

.kart-20::before { background: #d97706; }
.kart-20 .ikon { background: #fffbeb; color: #d97706; }
.kart-20:hover { border-color: #d97706; }
.kart-20 .git-buton { background: #d97706; }
.kart-20:hover .git-buton { background: #b45309; }

.kart-21::before { background: #1d4ed8; }
.kart-21 .ikon { background: #eff6ff; color: #1d4ed8; }
.kart-21:hover { border-color: #1d4ed8; }
.kart-21 .git-buton { background: #1d4ed8; }
.kart-21:hover .git-buton { background: #1e3a8a; }

.kart-22::before { background: #4d7c0f; }
.kart-22 .ikon { background: #f7fee7; color: #4d7c0f; }
.kart-22:hover { border-color: #4d7c0f; }
.kart-22 .git-buton { background: #4d7c0f; }
.kart-22:hover .git-buton { background: #3d6b0e; }

.kart-23::before { background: #6b21a8; }
.kart-23 .ikon { background: #f5f3ff; color: #6b21a8; }
.kart-23:hover { border-color: #6b21a8; }
.kart-23 .git-buton { background: #6b21a8; }
.kart-23:hover .git-buton { background: #581c87; }

.kart-24::before { background: #0369a1; }
.kart-24 .ikon { background: #f0f9ff; color: #0369a1; }
.kart-24:hover { border-color: #0369a1; }
.kart-24 .git-buton { background: #0369a1; }
.kart-24:hover .git-buton { background: #075985; }

.kart-25::before { background: #b45309; }
.kart-25 .ikon { background: #fffbeb; color: #b45309; }
.kart-25:hover { border-color: #b45309; }
.kart-25 .git-buton { background: #b45309; }
.kart-25:hover .git-buton { background: #92400e; }

/* ---------- ALT BİLGİ ---------- */
.footer-note {
    text-align: center;
    margin-top: 48px;
    font-size: 0.9rem;
    color: #94a3b8;
    border-top: 2px dashed #e2e8f0;
    padding-top: 28px;
}

/* ============================================================ */
/* HEADER, MENÜ ve MOBİL MENÜ STİLLERİ                          */
/* HTML'deki sınıflarla uyumlu: .top-menu ve .menu-icon        */
/* ============================================================ */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 10px 20px;
    border-bottom: 2px solid #003366;
    width: 100%;
    flex-wrap: wrap;
}

.logo img {
    height: 43px;
    width: auto;
}

/* Masaüstü menü - .top-menu sınıfı */
.top-menu {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
}

.top-menu a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.top-menu a:hover {
    background: #003366;
    color: white;
}
.top-menu a.active {
    background: #003366;
    color: white;
}

/* ---------- HAMBURGER MENÜ BUTONU (MOBİLDE KAYBOLMAZ) ---------- */
.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #003366;
    padding: 5px 8px;
    background: transparent;
    border: none;
    /* BUTON SABİT KALIR */
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 1002;
    transition: opacity 0.2s;
}

.menu-icon:hover {
    opacity: 0.7;
}

/* Mobil menü overlay (arka plan karartması) */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

/* Mobil menü paneli */
.menu-mobile {
    display: none;
    flex-direction: column;
    background: #003366;
    padding: 10px 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding-top: 70px; /* butonun altına gelmesi için */
    height: 100%;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.menu-mobile.open {
    display: flex;
    transform: translateX(0);
}

.menu-mobile a {
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-mobile a:hover {
    background: #f39c12;
    color: #003366;
}

.menu-mobile a i {
    width: 24px;
    text-align: center;
}

/* ---------- LOGO KORUMA ---------- */
.header .logo {
    flex: 0 0 auto !important;
    max-width: none !important;
    width: auto !important;
}
.header .logo img {
    max-height: 43px !important;
    height: 43px !important;
    width: auto !important;
    display: block;
}

/* ---------- KUTU (CARD) TASARIMLARI ---------- */
.kutu {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 18px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease;
    border-left: 6px solid #2a7de1;
}
.kutu:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}
.kutu-mavi { background: #e6f0ff; border-left-color: #1a5fc7; }
.kutu-yesil { background: #e3f7ec; border-left-color: #1a9e6a; }
.kutu-sari { background: #fff7e0; border-left-color: #d4a017; }
.kutu-kirmizi { background: #ffe6e6; border-left-color: #c0392b; }
.kutu-mor { background: #f0e6ff; border-left-color: #7d3c98; }
.kutu-turuncu { background: #ffe9d6; border-left-color: #e67e22; }
.kutu h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0b1e33;
    border-bottom: 2px dashed rgba(0,0,0,0.08);
    padding-bottom: 8px;
}
.kutu p, .kutu ul, .kutu ol { margin-bottom: 8px; }
.kutu ul, .kutu ol { padding-left: 22px; }
.kutu li { margin-bottom: 4px; }

/* ---------- YAN YANA KUTULAR ---------- */
.kutu-grup {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}
.kutu-grup .kutu { flex: 1 1 calc(50% - 20px); min-width: 280px; }
.kutu-grup.uclu .kutu { flex: 1 1 calc(33.333% - 20px); }
.kutu-grup.dortlu .kutu { flex: 1 1 calc(25% - 20px); }
.kutu-grup-5 {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 30px;
}
.kutu-grup-5 .kutu { flex: 1 1 calc(20% - 18px); min-width: 200px; }

/* ---------- ETİKETLER ---------- */
.badge-sayi {
    display: inline-block;
    background: #1e293b;
    color: #fbbf24;
    font-weight: 800;
    padding: 2px 14px;
    border-radius: 30px;
    font-size: 0.9rem;
    border: 2px solid #fbbf24;
    margin: 0 4px;
}
.badge-volt {
    background: #dc2626;
    color: #fff;
    padding: 2px 12px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid #fca5a5;
}
.badge-uyari {
    background: #fef3c7;
    color: #78350f;
    padding: 2px 14px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
    border-left: 4px solid #eab308;
    display: inline-block;
    margin-top: 4px;
}
.not-kirmizi {
    background: #fee2e2;
    border-left: 6px solid #dc2626;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #991b1b;
    margin-top: 6px;
}
.not-sari {
    background: #fef3c7;
    border-left: 6px solid #eab308;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #78350f;
    margin-top: 6px;
}
.kutu .onemli { font-weight: 700; color: #b91c1c; }

/* ---------- TABLO STİLLERİ ---------- */
.tablo-cevre {
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.tablo-cevre table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: white;
    border-radius: 14px;
    overflow: hidden;
}
.tablo-cevre th {
    background: #1a365d;
    color: white;
    font-weight: 600;
    padding: 14px 16px;
    text-align: left;
    letter-spacing: 0.3px;
}
.tablo-cevre td {
    padding: 12px 16px;
    border-bottom: 1px solid #e9edf2;
}
.tablo-cevre tr:last-child td { border-bottom: none; }
.tablo-cevre tbody tr:nth-child(even) { background-color: #f8faff; }
.tablo-cevre tbody tr:nth-child(odd) { background-color: #ffffff; }

.satir-mavi { background-color: #dbeafe !important; }
.satir-yesil { background-color: #d1fae5 !important; }
.satir-sari { background-color: #fef3c7 !important; }
.satir-kirmizi { background-color: #fecaca !important; }
.satir-mor { background-color: #e9d5ff !important; }
.satir-turuncu { background-color: #fed7aa !important; }

.tablo-cevre tbody tr:hover { background-color: #e6edf8 !important; transition: 0.15s; }

/* ---------- RENKLİ ETİKETLER ---------- */
.etiket {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #fff;
    margin: 2px 4px 2px 0;
}
.etiket-mavi { background: #2a7de1; }
.etiket-yesil { background: #1a9e6a; }
.etiket-sari { background: #d4a017; color: #1e2a3a; }
.etiket-kirmizi { background: #c0392b; }
.etiket-mor { background: #7d3c98; }
.etiket-turuncu { background: #e67e22; }

/* ---------- SORU KARTLARI ---------- */
.soru-karti {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 20px;
    border-left: 6px solid #2a7de1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.soru-karti:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.soru-num {
    display: inline-block;
    background: #1a365d;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 2px 16px;
    border-radius: 30px;
    margin-bottom: 8px;
}
.soru-metin {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #0b2b4a;
}
.secenekler {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
    padding-left: 4px;
}
.secenek {
    padding: 4px 0 4px 28px;
    position: relative;
    font-size: 0.95rem;
}
.secenek::before {
    content: attr(data-harf);
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #1a5fc7;
}
.cevap-buton {
    background: #eaf1fb;
    border: none;
    padding: 6px 18px;
    border-radius: 40px;
    font-weight: 600;
    color: #1a5fc7;
    cursor: pointer;
    font-size: 0.85rem;
    transition: 0.2s;
    border: 1px solid #c5d8ed;
}
.cevap-buton:hover { background: #d4e4f7; border-color: #1a5fc7; }
.cevap-alani {
    background: #e8f5e9;
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 10px;
    border-left: 6px solid #1a9e6a;
    display: none;
}
.cevap-alani.acik { display: block; }
.cevap-alani strong { color: #0f7a4a; }
.cevap-alani .aciklama {
    margin-top: 6px;
    font-size: 0.95rem;
    color: #1a2c3f;
}
.toggle-btn {
    display: inline-block;
    background: #1a5fc7;
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 60px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(26,95,199,0.3);
    transition: 0.2s;
    margin: 20px 0;
}
.toggle-btn:hover { background: #0f4a9e; transform: scale(1.02); }
.toggle-btn:active { transform: scale(0.97); }
.quiz-container { display: none; animation: fadeIn 0.4s ease; }
.quiz-container.acik { display: block; }
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ============================================================ */
/* MOBİL UYUMLULUK – MEDIA QUERIES                              */
/* ============================================================ */

/* Tablet: 3 sütun */
@media (max-width: 1024px) {
    .kart-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Mobil: 2 sütun */
@media (max-width: 700px) {
    .kart-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .konu-kart {
        padding: 18px 12px 16px;
    }
    .ikon {
        width: 54px;
        height: 54px;
        font-size: 1.6rem;
    }
    .konu-kart h3 {
        font-size: 0.95rem;
    }
    .konu-kart .aciklama {
        font-size: 0.7rem;
    }
}

/* Çok küçük telefon: 1 sütun */
@media (max-width: 480px) {
    .kart-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .baslik h1 {
        font-size: 2rem;
    }
    .baslik h1 span {
        font-size: 1.3rem;
        padding: 4px 16px;
    }
}

/* ---------- MOBİL MENÜ (768px ve altı) ---------- */
@media (max-width: 768px) {
    /* Masaüstü menüyü gizle */
    .top-menu {
        display: none;
    }

    /* Hamburger butonunu göster - SABİT KONUMDA */
    .menu-icon {
        display: block;
        position: fixed;
        top: 15px;
        right: 20px;
        z-index: 1002;
        font-size: 32px;
        background: white;
        padding: 4px 10px;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    /* Mobil menü paneli */
    .menu-mobile {
        display: flex;
        transform: translateX(-100%);
        padding-top: 75px;
    }
    .menu-mobile.open {
        transform: translateX(0);
    }

    /* Kutuları tek sütun yap */
    .kutu-grup .kutu,
    .kutu-grup.uclu .kutu,
    .kutu-grup.dortlu .kutu {
        flex: 1 1 100%;
        min-width: 0;
    }
    .kutu-grup-5 .kutu {
        flex: 1 1 100%;
    }
    .tablo-cevre {
        font-size: 0.85rem;
    }
    .tablo-cevre th,
    .tablo-cevre td {
        padding: 10px 12px;
    }
    body {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .kutu {
        padding: 16px 14px;
    }
    .tablo-cevre th,
    .tablo-cevre td {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    .soru-metin {
        font-size: 0.95rem;
    }
    .secenek {
        font-size: 0.88rem;
        padding-left: 24px;
    }
    .toggle-btn {
        font-size: 1rem;
        padding: 12px 28px;
    }
    .menu-icon {
        font-size: 28px;
        top: 12px;
        right: 14px;
        padding: 3px 8px;
    }
}

.footer-note {
    text-align: center;
    margin-top: 40px;
    padding: 18px 0;
    border-top: 2px dashed #cbdae9;
    color: #4a617c;
    font-size: 0.95rem;
}