/* Global Variables */
:root {
    --primary-color: #1d4ed8;
    /* Glosbe Blue */
    --primary-hover: #1e40af;
    --bg-color: #f0f7ff;
    /* Light Blue/Gray tint */
    --card-bg: #ffffff;
    --text-color: #111827;
    /* Deep Gray */
    --secondary-text: #6b7280;
    --border-color: #d1d5db;
    --divider: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 0;
    /* Account for fixed navbar */
}


/* Main Content */
.main-content {
    flex: 1;
    max-width: 1000px;
    margin: 20px auto;
    width: 100%;
    padding: 0 15px;
    /* Add padding here instead of relying on % width alone */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Header Login Button */
/* Header Login Button - Simple Text Link */
.btn-login-ref {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: white;
    padding: 0;
    border: none;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    backdrop-filter: none;
    box-shadow: none;
}

.btn-login-ref:hover {
    color: #3b82f6;
    /* Glosbe Blue */
    background: transparent;
    transform: none;
    box-shadow: none;
    border: none;
}

/* Translation Card */
.translation-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Lang Header */
.lang-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid var(--divider);
    background-color: #f9fafb;
}

.lang-group {
    flex: 1;
    display: flex;
    justify-content: center;
}

.lang-select {
    padding: 8px 12px;
    border: 1px solid transparent;
    /* Invisible border unless hover */
    border-radius: 6px;
    background: transparent;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
    text-align: center;
}

.lang-select:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.swap-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background-color: var(--card-bg);
    border-radius: 50%;
    color: var(--secondary-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.swap-btn:hover {
    background-color: var(--bg-color);
    color: var(--primary-color);
    transform: rotate(180deg);
}

/* Text Area Container */
.text-area-container {
    display: flex;
    min-height: 250px;
    position: relative;
}

.text-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: relative;
    min-width: 0;
}

.source-box {
    border-right: 1px solid var(--divider);
}

.target-box {
    background-color: #f9fafb;
    /* Slight grey background for output */
}

textarea,
.output-text {
    width: 100%;
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    color: var(--text-color);
    resize: none;
    outline: none;
    line-height: 1.5;
    min-width: 0;
}

.output-text {
    white-space: pre-wrap;
    word-break: break-word;
    /* Ensure long words wrap instead of expanding container */
    /* Placeholder style */
    display: flex;
    align-items: flex-start;
}

.output-text:empty::before {
    content: attr(placeholder);
    color: #9ca3af;
}

/* Footer / Tools */
.box-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.icon-btn,
.clear-btn {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    font-size: 18px;
    transition: color 0.2s;
}

.icon-btn:hover {
    color: var(--primary-color);
    background-color: rgba(29, 78, 216, 0.05);
}

.clear-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    display: none;
    /* JS toggles this */
}

#charCount {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

/* Translate Action Bar */
.translate-action {
    padding: 16px;
    border-top: 1px solid var(--divider);
    display: flex;
    justify-content: flex-end;
    /* Right aligned like Glosbe main CTA */
    background: #fcfcfc;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(29, 78, 216, 0.2);
    transition: transform 0.1s, box-shadow 0.1s, background-color 0.2s;
}

.primary-btn:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 6px 8px rgba(29, 78, 216, 0.3);
    transform: translateY(-1px);
}

.primary-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(29, 78, 216, 0.2);
}

/* Suggestions / Examples Section */
.examples-section {
    background-color: transparent;
}

.examples-section.hidden {
    display: none;
}

.section-header {
    margin-bottom: 20px;
    text-align: center;
}

.section-header h2 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-header i {
    color: var(--primary-color);
}

.section-header p {
    color: var(--secondary-text);
    font-size: 14px;
}

.suggestions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.suggestion-card {
    background-color: white;
    padding: 10px 18px;
    border-radius: 50px;
    /* Pill shape */
    border: 1px solid var(--divider);
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.suggestion-card:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .text-area-container {
        flex-direction: column;
    }

    .source-box {
        border-right: none;
        border-bottom: 1px solid var(--divider);
        padding-bottom: 15px;
    }

    .text-box {
        padding: 15px;
    }

    .lang-header {
        padding: 8px 10px;
        flex-wrap: nowrap;
        gap: 5px;
    }

    .lang-group {
        flex: 1;
        overflow: hidden;
    }

    .lang-select {
        padding: 6px 8px;
        font-size: 13px;
        width: 100%;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .swap-btn {
        flex: 0 0 32px;
        width: 32px;
        height: 32px;
    }

    .mobile-divider {
        height: 1px;
        background-color: var(--divider);
        width: 100%;
        margin: 5px 0;
    }

    .translate-action {
        justify-content: stretch;
        /* Full width btn */
    }

    .primary-btn {
        width: 100%;
    }

    .menu-icon {
        display: block;
        font-size: 24px;
        color: white;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        gap: 20px;
        transition: left 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        display: block;
        color: #cbd5e1;
    }

    .footer-cols {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Phrase Book Section */
.phrase-book-section {
    padding: 40px 20px;
    background-color: #f8fafc;
    /* Slightly different bg to separate sections */
}

.phrase-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.phrase-tabs {
    display: flex;
    background-color: #e2e8f0;
    padding: 5px;
    border-radius: 50px;
    gap: 5px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    max-width: 100%;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.phrase-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 40px;
    background: transparent;
    color: var(--secondary-text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.tab-btn.active {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tab-btn:hover:not(.active) {
    color: var(--text-color);
}

.phrase-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .phrase-list {
        grid-template-columns: 1fr;
    }
}

.phrase-card {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.phrase-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.phrase-content {
    flex: 1;
}

.phrase-en {
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 4px;
    font-size: 16px;
}

.phrase-sat {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 500;
}

.phrase-actions {
    display: flex;
    gap: 8px;
    margin-left: 15px;
}

.action-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid transparent;
    background-color: #f1f5f9;
    color: var(--secondary-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.action-icon-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Animation */
.fade-in {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Styling */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-top: none;
    margin-top: 80px;
    padding: 60px 0 30px 0;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.footer-col p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #818cf8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    margin: 0;
    transition: background 0.2s;
}

.social-links a:hover {
    background: #818cf8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

/* Legal Page Content Styling */
.page-content {
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: 40px;
    line-height: 1.8;
}

.page-content h1 {
    font-size: 32px;
    border-bottom: 1px solid var(--divider);
    padding-bottom: 20px;
    margin-bottom: 30px;
    color: var(--text-color);
}

.page-content h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.page-content p {
    color: var(--secondary-text);
    margin-bottom: 20px;
    font-size: 16px;
}

.page-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--secondary-text);
}

/* Info Sections (Features, How-to, FAQ) */
.info-section {
    padding: 60px 20px;
    background-color: transparent;
    text-align: center;
}

.info-section.alternate-bg {
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin: 20px 0;
}

.section-title {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 40px;
    font-weight: 700;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #eff6ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px auto;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-card p {
    color: var(--secondary-text);
    font-size: 15px;
    line-height: 1.6;
}

/* Steps (How to Use) */
.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 18px;
}

.step p {
    color: var(--text-color);
    font-weight: 500;
}

.step-divider {
    width: 50px;
    height: 2px;
    background-color: var(--divider);
    margin-top: 20px;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.faq-item h4 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--secondary-text);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .step-divider {
        display: none;
    }
}

.virtual-keyboard-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 700px;
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 15px;
    z-index: 1000;
}

.virtual-keyboard-popup.hidden {
    display: none;
}

.vk-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
}

.vk-header button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #94a3b8;
}

.vk-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.vk-key {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: #f8fafc;
    border-radius: 6px;
    font-family: 'Noto Sans Ol Chiki', sans-serif;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s;
    color: var(--text-color);
}

.vk-key:hover {
    background: white;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.vk-key:active {
    transform: translateY(1px);
    background: #eff6ff;
}

.vk-space {
    width: 150px;
}

.vk-backspace {
    width: 50px;
    color: #ef4444;
    background: #fef2f2;
}

@media (max-width: 768px) {
    .virtual-keyboard-popup {
        width: 100%;
        left: 0;
        bottom: 0;
        transform: none;
        border-radius: 12px 12px 0 0;
        position: fixed;
        /* Stick to bottom on mobile */
    }
}

/* Ol Chiki Table */
.olchiki-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background: white;
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    overflow: hidden;
}

.olchiki-table th,
.olchiki-table td {
    padding: 12px;
    border: 1px solid var(--divider);
    text-align: center;
}

.olchiki-table th {
    background-color: #f8fafc;
    color: var(--text-color);
    font-weight: 600;
}

.olchiki-table td {
    color: var(--secondary-text);
}

.ol-font {
    font-family: 'Noto Sans Ol Chiki', sans-serif;
    font-size: 20px;
    color: var(--primary-color) !important;
}

/* Content Block with Illustration */
.content-block-bw {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    gap: 40px;
}

.content-block-bw .text-content {
    flex: 1;
    text-align: left;
}

.content-block-bw .illustration {
    flex: 0 0 150px;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .content-block-bw {
        flex-direction: column-reverse;
        text-align: center;
    }

    .content-block-bw .text-content {
        text-align: center;
    }

    .content-block-bw .section-title {
        text-align: center !important;
    }
}


/* =========================================
   Dashboard Header Styles (Ported from dashboard.html)
   ========================================= */

/* Reset body padding since new header is static */
body {
    padding-top: 0;
}

.main-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
    font-size: 24px;
}

.logo a {
    color: white;
    text-decoration: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    padding: 0;
    /* Reset padding from previous .nav-links a */
}

.nav-links a:hover {
    opacity: 0.8;
    background: none;
    /* Reset background from previous */
    color: white;
}

.nav-links a.active {
    text-decoration: underline;
    border-bottom: none;
    /* Reset border */
    color: white;
}

.user-menu {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.user-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: none;
    /* JS will show this if needed */
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    display: none;
    z-index: 1000;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #1e293b;
    text-decoration: none;
    transition: background 0.3s;
    border-bottom: 1px solid #f1f5f9;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: #1d4ed8;
}

/* Mobile Responsive Header */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        /* Adjust based on header height approximately */
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 1000;
        width: 100%;
    }

    .nav-links.active {
        max-height: 500px;
    }

    .nav-links>a {
        padding: 1rem 1.5rem;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
        transition: background 0.2s;
        text-align: left;
    }

    .nav-links>a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .user-menu {
        width: 100%;
        position: relative;
    }

    .user-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.05);
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        margin-top: 0;
        box-shadow: none;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
    }

    .dropdown-menu.show {
        max-height: 200px;
    }

    .dropdown-menu a {
        padding: 0.75rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: white;
        /* White text on dark mobile menu */
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .footer-cols {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}