/* ============================================
   WEB MENTOR - FRONT-END STYLES
   Centralized CSS for all front-facing pages
   Last Updated: 2026-07-26
   ============================================ */

/* GOOGLE FONTS IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* GLOBAL STYLES */
:root {
    --primary-dark: #111111;
    --primary-light: #f7f7f7;
    --secondary-dark: #1a1a1a;
    --secondary-light: #f0f0f0;
    --accent-purple: #9d4edd;
    --accent-purple-light: #c77dff;
    --accent-blue: #6366f1;
    --text-primary: #111111;
    --text-secondary: #555555;
    --text-tertiary: #888888;
    --text-light: #aaaaaa;
    --border-light: #ececec;
    --border-mid: #d0d0d0;
    --border-dark: #333333;
    --success-light: #e6faf0;
    --success-border: #6cc97d;
    --error-light: #fde8e6;
    --error-border: #dc6f6f;
    --warning-light: #ebf3e4;
    --warning-border: #aae78c;
    --input-bg: #f1f1f1;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--primary-light);
    color: var(--text-primary);
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    text-decoration: underline;
}

/* PAGE STRUCTURE */
.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* HEADER & NAVIGATION */
.hero {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 1.5rem 1.5rem;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.topnav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.brand {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--primary-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.brand:hover {
    color: var(--accent-purple);
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    font-size: 0.92rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    transition: all 0.15s ease;
    font-weight: 500;
}

.nav-link:hover {
    background-color: rgba(17, 17, 17, 0.06);
    color: var(--accent-purple);
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin: 0;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* HERO SECTION */
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    background: radial-gradient(circle at 20% 50%, rgba(157, 78, 221, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.06) 0%, transparent 50%);
    padding: 2.5rem;
    border-radius: 2rem;
    position: relative;
}

.hero-copy {
    max-width: 610px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    margin: 0 0 1rem;
    font-size: 30px;
    line-height: 1.02;
    letter-spacing: 1px;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subtitle {
    margin: 0.75rem 0 1.75rem;
    color: var(--text-secondary);
    max-width: 620px;
    line-height: 1.75;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* BUTTONS */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.95rem 1.8rem;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.button-primary {
    background-color: var(--primary-dark);
    color: #ffffff;
}

.button-primary:hover {
    background-color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 17, 17, 0.15);
}

.button-secondary {
    border: 1px solid var(--primary-dark);
    color: var(--primary-dark);
    background-color: #ffffff;
}

.button-secondary:hover {
    background-color: var(--primary-light);
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

/* PANELS */
.panel {
    background-color: #ffffff;
    border-radius: 2rem;
    box-shadow: 0 40px 120px rgba(17, 17, 17, 0.08);
    padding: 2rem;
    min-height: 420px;
}

.panel-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    animation: slideInRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.panel-hero h2 {
    margin: 0 0 1rem;
    font-size: 1.95rem;
    animation: colorShift 6s ease-in-out infinite, breathing 4s ease-in-out infinite;
    background: none;
    background-size: 200% 200%;
}

.panel-hero h2:hover {
    text-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
}

.panel-hero p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.75;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.panel-hero ul {
    margin: 1rem 0;
    padding: 0;
    list-style: none;
}

.panel-hero ul li {
    background-color: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 999px;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    color: var(--accent-purple);
    display: inline-block;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    transition: all 0.3s ease;
}

.panel-hero ul li:hover {
    animation: badgeShimmer 0.6s ease-in-out;
    background-color: rgba(157, 78, 221, 0.2);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
}

/* SECTIONS & GRIDS */
.section {
    padding: 2rem 1.5rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.section-title {
    margin: 0 0 1.5rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
}

.grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* CATEGORY CARDS */
.category-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(17, 17, 17, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}


.category-card:hover {
    box-shadow: 0 12px 40px rgba(157, 78, 221, 0.4);
    transform: translateY(-2px);
    border-color: var(--accent-purple);
}

.category-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.category-card p {
    margin: 0 0 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
    text-align: left;
}
.category-name a{
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* DIVE IN BUTTON */
.btn-dive-in {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: linear-gradient(90deg, var(--accent-purple) 0%, var(--accent-purple-light) 100%);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    align-self: flex-start;
}

.btn-dive-in:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(199, 125, 255, 0.5);
}

/* PAGE HEADER */
.page-header {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1.5rem 0;
}

.page-title {
    margin: 0 0 0.5rem;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1.05;
    color: var(--text-primary);
}

.page-copy {
    margin: 0 0 1.5rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 760px;
}

/* CONTENT SECTIONS */
.content {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto 2rem;
    padding: 0 1.5rem;
}

.card {
    background-color: #ffffff;
    border: 1px solid var(--border-mid);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.meta span {
    background-color: var(--input-bg);
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-size: 0.95rem;
}

/* CATEGORY/SUBCATEGORY LIST */
.category-list {
    display: grid;
    gap: 1rem;
}

.hierarchy {
    margin: 1rem 0 0;
    padding-left: 1rem;
    border-left: 1px solid #e5e5e5;
}

.subcategory {
    margin: 0 1rem 1rem 0;
}

.subcategory-title {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.page-item {
    margin: 0 0 0.25rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.page-item a {
    color: var(--text-primary);
    font-weight: 500;
}

.page-item a:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

/* BADGES */
.badge {
    display: inline-flex;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

/* QUIZ QUESTIONS */
.question-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 1.25rem;
    background-color: #fafafa;
    border: 1px solid #e1e1e1;
}

.question-number {
    margin: 0 0 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.question-text {
    margin: 0 0 1rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.question-text img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 0.75rem 0;
}

.question-text p {
    margin: 0.5rem 0;
}

.question-text ul,
.question-text ol {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

.question-text li {
    margin: 0.35rem 0;
}

.question-text strong {
    font-weight: 700;
}

.question-text em {
    font-style: italic;
}

.question-text table {
    border-collapse: collapse;
    width: 100%;
    margin: 0.75rem 0;
}

.question-text table td,
.question-text table th {
    border: 1px solid var(--border-mid);
    padding: 0.65rem;
}

/* OPTIONS */
.options {
    display: grid;
    gap: 0.75rem;
}

.option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #ffffff;
    border: 1px solid #c9c9c9;
    border-radius: 0.9rem;
    padding: 0.85rem 1rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.option:hover {
    border-color: var(--accent-purple);
    background-color: rgba(157, 78, 221, 0.02);
}

.option input {
    accent-color: var(--primary-dark);
    cursor: pointer;
}

.option label {
    margin: 0;
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    flex: 1;
}

/* RESULTS */
.result {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.result.correct {
    background-color: var(--success-light);
    border: 1px solid var(--success-border);
    color: #2d7a4a;
}

.result.incorrect {
    background-color: var(--error-light);
    border: 1px solid var(--error-border);
    color: #8b3a3a;
}

.result .explanation {
    margin: 0.75rem 0 0;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

/* SUMMARY SECTION */
.summary {
    background-color: var(--warning-light);
    border: 2px solid var(--warning-border);
    border-radius: 1.25rem;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.summary h3 {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.summary-stat {
    display: inline-flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-blue);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.35rem;
    font-weight: 500;
}

/* ACTION BUTTONS */
.summary-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-retry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    border: 1px solid var(--primary-dark);
    background-color: #ffffff;
    color: var(--primary-dark);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-retry:hover {
    background-color: var(--primary-light);
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

.btn-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    border: none;
    background-color: var(--primary-dark);
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-next:hover {
    background-color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 17, 17, 0.15);
}

/* FOOTER STYLES */
.footer-section {
    background-color: var(--secondary-dark);
    color: var(--secondary-light);
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-desc {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin: 0 0 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-divider {
    height: 1px;
    background-color: var(--border-dark);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.footer-copyright {
    margin: 0;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-bottom-links a {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.footer-bottom-links .divider {
    color: var(--border-dark);
}

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */

@keyframes colorShift {
    0% {
        background-position: 0% center;
        color: var(--text-primary);
    }
    50% {
        background-position: 100% center;
        color: var(--accent-purple);
    }
    100% {
        background-position: 0% center;
        color: var(--text-primary);
    }
}

@keyframes breathing {
    0%, 100% {
        font-size: 1.85rem;
        letter-spacing: 1px;
        opacity: 1;
    }
    50% {
        font-size: 1.92rem;
        letter-spacing: 1.2px;
        opacity: 0.95;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgeShimmer {
    0%, 100% {
        box-shadow: 0 0 10px rgba(157, 78, 221, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(157, 78, 221, 0.7);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .panel {
        min-height: auto;
    }

    .section {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 1rem 1rem;
    }

    .topnav {
        position: relative;
        gap: 0.75rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        border-top: 1px solid var(--border-light);
        border-bottom: 1px solid var(--border-light);
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        padding: 0;
        margin: 0;
        z-index: 200;
    }

    .nav-links.active {
        max-height: 500px;
        opacity: 1;
        padding: 0.5rem 0;
    }

    .nav-link {
        width: 100%;
        padding: 0.75rem 1rem;
        border-radius: 0;
        transition: all 0.2s ease;
        border-left: 4px solid transparent;
    }

    .nav-link:hover {
        background-color: rgba(157, 78, 221, 0.05);
        border-left-color: var(--accent-purple);
        padding-left: 1.25rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-section {
        padding: 2rem 1.5rem 1.5rem;
    }

    .footer-title {
        font-size: 0.95rem;
    }

    .footer-desc {
        font-size: 0.9rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        align-items: center;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        gap: 1rem;
    }

    .footer-bottom-links .divider {
        display: inline;
    }

    .summary-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-retry,
    .btn-next {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0.75rem;
    }

    .topnav {
        position: relative;
        justify-content: space-between;
    }

    .brand {
        font-size: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle span {
        width: 20px;
        height: 2px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        border-top: 1px solid var(--border-light);
        border-bottom: 1px solid var(--border-light);
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        padding: 0;
        margin: 0;
        z-index: 200;
    }

    .nav-links.active {
        max-height: 400px;
        opacity: 1;
        padding: 0.5rem 0;
    }

    .nav-link {
        width: 100%;
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
        border-radius: 0;
        border-left: 4px solid transparent;
        transition: all 0.2s ease;
    }

    .nav-link:hover {
        background-color: rgba(157, 78, 221, 0.05);
        border-left-color: var(--accent-purple);
        padding-left: 1.25rem;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .section {
        padding: 1rem;
    }

    .card {
        padding: 1rem;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .summary {
        padding: 1rem;
    }

    /* MOBILE ANIMATION OPTIMIZATION */
    /* Reduce animation complexity on mobile */
    * {
        animation-duration: 0.5s !important;
    }

    /* Disable parallax on mobile */
    .hero-grid {
        transform: none !important;
    }

    .doodle {
        animation: none !important;
        transform: none !important;
        opacity: 0.4;
    }

    .panel-hero h2 {
        animation: colorShift 4s ease-in-out infinite !important;
    }

    /* Reduce card animations */
    .category-card {
        animation: cardSlideUp 0.4s ease-out backwards !important;
    }

    .category-card::before {
        display: none;
    }

    .category-card:hover {
        transform: translateY(-3px);
    }

    /* Simplify panel animations */
    .panel-hero {
        animation: slideInRight 0.4s ease-out !important;
    }

    /* Prefers reduced motion support */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation: none !important;
            transition: none !important;
        }

        .hero-grid {
            transform: none !important;
        }

        .doodle {
            transform: none !important;
        }
    }

    .footer-section {
        padding: 1.5rem 0.75rem 1rem;
    }

    .footer-content {
        margin: 0;
        padding: 0 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-col {
        text-align: left;
    }

    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .footer-desc {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .footer-links {
        margin: 0;
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 0.6rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-divider {
        margin: 1.5rem 0;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
        width: 100%;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .footer-bottom-links a {
        font-size: 0.8rem;
    }

    .footer-bottom-links .divider {
        display: none;
    }
}
