/* ============================
   Financial Services Website
   Desktop + Mobile + Dark Mode
   ============================ */

/* CSS Variables - Light Theme (Default) */
:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --accent: #c9a227;
    --accent-light: #d4b142;
    --bg-dark: #0f172a;
    --bg-light: #f8fafc;
    --bg-section: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --card-bg: #ffffff;
    --card-border: rgba(0, 0, 0, 0.04);
    --header-bg: rgba(255, 255, 255, 0.95);
    --header-border: rgba(0, 0, 0, 0.06);
    --input-border: #e2e8f0;
    --icon-bg: linear-gradient(135deg, #c9a227 0%, #d4b142 100%);
    --icon-svg-fill: #1a365d;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --transition: 0.3s ease;
    color-scheme: light;
}

/* Dark Theme */
@media (prefers-color-scheme: dark) {
    :root {
        --primary: #93c5fd;
        --primary-light: #60a5fa;
        --accent: #fbbf24;
        --accent-light: #fcd34d;
        --bg-dark: #0f172a;
        --bg-light: #1e293b;
        --bg-section: #0f172a;
        --text-dark: #f1f5f9;
        --text-light: #94a3b8;
        --white: #1e293b;
        --card-bg: #334155;
        --card-border: rgba(255, 255, 255, 0.08);
        --header-bg: rgba(30, 41, 59, 0.95);
        --header-border: rgba(255, 255, 255, 0.06);
        --input-border: #475569;
        --icon-bg: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
        --icon-svg-fill: #1e293b;
        --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.4);
        color-scheme: dark;
    }
}

@media (prefers-color-scheme: dark) {
    .footer {
        color: rgba(255, 255, 255, 0.85);
    }

    .section-dark {
        color: rgba(255, 255, 255, 0.85);
    }
}

/* Light Theme Override (for toggle button) */
html.light-theme {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --accent: #c9a227;
    --accent-light: #d4b142;
    --bg-dark: #0f172a;
    --bg-light: #f8fafc;
    --bg-section: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --card-bg: #ffffff;
    --card-border: rgba(0, 0, 0, 0.04);
    --header-bg: rgba(255, 255, 255, 0.95);
    --header-border: rgba(0, 0, 0, 0.06);
    --input-border: #e2e8f0;
    --icon-bg: linear-gradient(135deg, #c9a227 0%, #d4b142 100%);
    --icon-svg-fill: #1a365d;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    color-scheme: light;
}

/* Dark Theme Override (for toggle button) */
html.dark-theme {
    --primary: #93c5fd;
    --primary-light: #60a5fa;
    --accent: #fbbf24;
    --accent-light: #fcd34d;
    --bg-dark: #0f172a;
    --bg-light: #1e293b;
    --bg-section: #0f172a;
    --text-dark: #f1f5f9;
    --text-light: #94a3b8;
    --white: #1e293b;
    --card-bg: #334155;
    --card-border: rgba(255, 255, 255, 0.08);
    --header-bg: rgba(30, 41, 59, 0.95);
    --header-border: rgba(255, 255, 255, 0.06);
    --input-border: #475569;
    --icon-bg: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    --icon-svg-fill: #1e293b;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.4);
    color-scheme: dark;
}

html.dark-theme .footer {
    color: rgba(255, 255, 255, 0.85);
}

html.dark-theme .section-dark {
    color: rgba(255, 255, 255, 0.85);
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

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

.text-light {
    color: var(--text-light);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 2rem 0;
}

.section-dark {
    background: var(--bg-dark);
    color: var(--white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-light {
    background: var(--bg-light);
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.flex {
    display: flex;
    gap: 1rem;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.text-center {
    text-align: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--header-border);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: #1a365d;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

/* Hero */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero .flex {
    flex-wrap: wrap;
}

/* Cards */
.card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--card-border);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--icon-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--icon-svg-fill);
}

.card h4 {
    margin-bottom: 0.75rem;
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    color: var(--text-light);
}

.section-dark .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

/* Services */
.service-category {
    margin-bottom: 2rem;
}

.service-category h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

/* Testimonials */
.testimonial {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid var(--card-border);
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.stars {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* Quote Box */
.quote-box {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: #ffffff;
    padding: 3rem;
    border-radius: var(--radius);
    position: relative;
    margin: 2rem 0;
}

.quote-box::before {
    content: '"';
    font-size: 6rem;
    position: absolute;
    top: 0;
    left: 20px;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.quote-box p {
    font-size: 1.25rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.quote-box .author {
    margin-top: 1.5rem;
    font-weight: 600;
}

/* Features */
.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    fill: #1a365d;
}

/* Contact Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--input-border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    background: var(--card-bg);
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-item svg {
    width: 24px;
    height: 24px;
    fill: var(--accent);
    flex-shrink: 0;
}

.map-placeholder {
    background: #e2e8f0;
    height: 300px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer h4 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: block;
    margin-bottom: 0.5rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 6.5rem 0 2.5rem;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

/* Bottom Navigation - Hidden on Desktop */
.bottom-nav {
    display: none;
}

/* Bottom Navigation Styles */
@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
        align-items: center;
        position: fixed;
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 40px;
        padding: 6px 10px;
        gap: 4px;
        z-index: 1000;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }

    .bottom-nav-item {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        color: rgba(255, 255, 255, 0.5);
        transition: var(--transition);
        text-decoration: none;
    }

    .bottom-nav-item svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

    .bottom-nav-item span {
        display: none;
    }

    .bottom-nav-item:hover,
    .bottom-nav-item:active {
        color: rgba(255, 255, 255, 0.9);
        background: rgba(255, 255, 255, 0.1);
    }

    .bottom-nav-item.active {
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff;
    }

    /* Theme Toggle Button */
    .theme-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: transparent;
        border: none;
        color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: var(--transition);
        margin-left: 4px;
        padding: 0;
    }

    .theme-toggle svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

    .theme-toggle:hover,
    .theme-toggle:active {
        color: rgba(255, 255, 255, 0.9);
        background: rgba(255, 255, 255, 0.1);
    }

    /* Show sun icon by default (for switching to light), hide moon */
    .theme-toggle .icon-moon {
        display: none;
    }

    .theme-toggle .icon-sun {
        display: block;
    }

    /* When dark theme is active, show sun icon (for switching to light) */
    html.dark-theme .theme-toggle .icon-moon {
        display: none;
    }

    html.dark-theme .theme-toggle .icon-sun {
        display: block;
    }

    /* When light theme is active, show moon icon (for switching to dark) */
    html.light-theme .theme-toggle .icon-moon {
        display: block;
    }

    html.light-theme .theme-toggle .icon-sun {
        display: none;
    }

    /* Add padding to body to prevent content hiding behind bottom nav */
    body {
        padding-bottom: 80px;
    }

    /* Hide hamburger menu since we have bottom nav */
    .nav-toggle {
        display: none !important;
    }

    .nav-links {
        display: none !important;
    }
}


/* =========================================
   MOBILE-SPECIFIC STYLES (768px and below)
   Clean, compact mobile UI
   ========================================= */
@media (max-width: 768px) {
    html {
        -webkit-tap-highlight-color: transparent;
    }

    body {
        font-size: 15px;
        line-height: 1.7;
        -webkit-font-smoothing: antialiased;
    }

    /* Mobile Typography */
    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    .text-light {
        font-size: 0.9rem;
    }

    /* Mobile Layout */
    .container {
        padding: 0 1.25rem;
    }

    .section {
        padding: 1.75rem 0;
    }

    /* Mobile Grid - Single Column */
    .grid {
        gap: 1rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .flex {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Mobile Header */
    .header {
        padding: 0.875rem 0;
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    }

    .logo {
        font-size: 1.25rem;
    }

    .header .btn-primary {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--card-bg);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transform: translateX(100%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
    }

    .nav-links a {
        font-size: 1.25rem;
        padding: 1rem 0;
        border-bottom: 1px solid var(--header-border);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
        padding: 8px;
        z-index: 1001;
    }

    .nav-toggle span {
        width: 22px;
        height: 2px;
        border-radius: 2px;
    }

    /* Mobile Buttons */
    .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 48px;
        font-size: 0.9rem;
        padding: 0.875rem 1.5rem;
        border-radius: 10px;
    }

    .btn-primary:hover,
    .btn-outline:hover {
        transform: none;
    }

    /* Mobile Hero */
    .hero {
        min-height: auto;
        padding: 7rem 0 2rem;
    }

    .hero h1 {
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Mobile Cards */
    .card {
        padding: 1.25rem;
        border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .card:hover {
        transform: none;
        box-shadow: var(--shadow);
    }

    .card:active {
        transform: scale(0.98);
    }

    .card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
        border-radius: 10px;
    }

    .card-icon svg {
        width: 24px;
        height: 24px;
    }

    .card h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .card p {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    /* Mobile Stats */
    .stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
        line-height: 1;
    }

    .stat-label {
        font-size: 0.8rem;
        margin-top: 0.25rem;
    }

    /* Mobile Services */
    .service-category {
        margin-bottom: 1.5rem;
    }

    .service-category h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    /* Mobile Testimonials */
    .testimonial {
        padding: 1.25rem;
        border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .testimonial::before {
        font-size: 3rem;
        top: 5px;
        left: 15px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .testimonial-author {
        font-size: 0.9rem;
    }

    .stars {
        font-size: 0.9rem;
    }

    /* Mobile Quote Box */
    .quote-box {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .quote-box::before {
        font-size: 4rem;
        top: -5px;
        left: 15px;
    }

    .quote-box p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .quote-box .author {
        margin-top: 1rem;
        font-size: 0.9rem;
    }

    /* Mobile Features */
    .feature {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
    }

    .feature-icon svg {
        width: 18px;
        height: 18px;
    }

    /* Mobile Form */
    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.375rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        /* Prevents iOS zoom */
        padding: 0.875rem 1rem;
        border-radius: 10px;
        border-width: 1.5px;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
    }

    .form-group textarea {
        min-height: 100px;
    }

    .contact-info-item {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .contact-info-item svg {
        width: 22px;
        height: 22px;
        margin-top: 2px;
    }

    .contact-info-item h4 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .contact-info-item p {
        font-size: 0.875rem;
    }

    .map-placeholder {
        height: 200px;
        font-size: 0.875rem;
    }

    /* Mobile Footer */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer a {
        font-size: 0.9rem;
        padding: 0.25rem 0;
        margin-bottom: 0.375rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-links a {
        width: 44px;
        height: 44px;
    }

    .social-links a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .social-links a:active {
        background: var(--accent);
    }

    /* Mobile Animations */
    .fade-in {
        transform: translateY(20px);
    }

    /* Mobile Page Header */
    .page-header {
        padding: 5.5rem 0 2.5rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header p {
        font-size: 0.95rem;
        margin-top: 0.5rem;
    }
}