/* Volex Solutions PREMIUM LOGISTICS 
    Official Color: Sky Blue (#87CEEB)
    Project: Chrisverse Scalable Support
  )
*/




:root {
    --primary: #081f3f;
    --secondary: #112240;
    --sky: #B22222; /* Matured Firebrick Red */
    --white: #ffffff;
    --stats-bg: #fdfdfd;
    --slate: #94a3b8;
    --light-slate: #ccd6f6;
    --border-soft: rgba(178, 34, 34, 0.18);
    --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* 1. RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 2. NAVIGATION REFACTORED */
.navbar {
    background: var(--primary);
    height: 80px; 
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo {
    display: flex;
    align-items: center;
    font-family: 'Quintessential', cursive; 
    text-decoration: none;
    color: var(--white);
    font-size: 1.15rem; 
    font-weight: 800;
    margin-right: auto;
    /* Pro-tip: slight negative tracking on the main word for a tighter look */
    letter-spacing: -0.5px; 
}

.logo-img {
    height: 42px; 
    width: auto;
    margin-right: -2px;
}

.logo span {
    color: var(--sky); 
    font-weight: 800;
    /* THIS CREATES THE SEPARATION */
    margin-left: 8px; 
    /* Increases readability of the red text */
    letter-spacing: 1px; 
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    transition: var(--transition);
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem; 
}
.dropbtn {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.dropbtn:hover {
    color: var(--sky);
}

.lang-select {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    outline: none;
    cursor: pointer;
}

.lang-select option {
    color: var(--primary);
    background: var(--white);
}

/* TOOLS MENU FIX: Vertically arranged dropdown */
.tools-dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-content {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    z-index: 1001;
    border-radius: 4px;
    padding: 10px 0;
    border: 1px solid rgba(135, 206, 235, 0.2);
}

.dropdown-content a {
    display: block; 
    padding: 12px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: rgba(135, 206, 235, 0.1);
    color: var(--sky);
}

.tools-dropdown.active .dropdown-content {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 19px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        background: var(--secondary);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: left;
        padding: 28px 20px 32px;
        gap: 14px;
        box-shadow: -10px 10px 20px rgba(0,0,0,0.2);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a,
    .nav-links .dropbtn,
    .nav-links .lang-select {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 14px 16px;
        border-radius: 10px;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.05);
    }

    .tools-dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        min-width: 100%;
        margin-top: 8px;
        border-radius: 10px;
        box-shadow: none;
    }

    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* 3. HERO & TRACKBOX */
.hero-heavy {
    background: linear-gradient(rgba(10, 25, 47, 0.82), rgba(10, 25, 47, 0.82)), 
                url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    padding: 130px 0;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.2rem; 
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.sky-text {
    color: var(--sky);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--light-slate);
    max-width: 750px;
    margin: 0 auto 40px;
}

.track-btn {
    background: var(--sky);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid var(--sky);
}

.track-btn:hover {
    background: transparent;
    color: var(--sky);
}

.hero-cta-container {
    margin-bottom: 50px;
}

.quick-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.action-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    width: 180px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    color: var(--white);
    text-align: center;
}

.action-card:hover {
    background: var(--sky);
    color: var(--primary);
    transform: translateY(-5px);
}

.action-card i {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.action-card span {
    font-weight: 700;
    font-size: 0.9rem;
}

/* 4. INFRASTRUCTURE & MONITORING */
.monitoring-section {
    padding: 100px 0;
    background:
radial-gradient(circle at top, rgba(135,206,235,0.08), transparent 40%),
var(--primary);
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.section-header h2 {
    text-align: center;
    font-size: 2.2rem; 
    font-weight: 800;
    color: var(--white);
}

.header-stroke {
    width: 80px;
    height: 4px;
    background: var(--sky);
    margin-top: 15px;
}

.infra-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* SAME ORIGINAL LOOK, now prepared for multiple fading images */
.infra-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(135, 206, 235, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    background: #0b2f73;
}

/* all slider images sit in same exact box */
.infra-img-box .infra-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
}

/* visible image */
.infra-img-box .infra-slide.active {
    opacity: 1;
    z-index: 2;
}

.infra-text p {
    color: var(--slate);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.infra-features {
    list-style: none;
}

.infra-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--light-slate);
    font-weight: 600;
    margin-bottom: 15px;
}

.infra-features i {
    color: var(--sky);
}

@media (max-width: 992px) {
    .infra-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .infra-features li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .monitoring-section {
        padding: 80px 0;
    }

    .infra-split {
        gap: 35px;
    }

    .infra-img-box {
        aspect-ratio: 16 / 10;
        border-radius: 10px;
    }

    .infra-text p {
        font-size: 1rem;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700;900&display=swap');

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
    text-align: center;
    padding: 60px 20px;
    background: var(--stats-bg);
}

.stat-item {
    font-family: 'Outfit', sans-serif;
    padding: 45px 30px;
    background: #e0f2fe;
    border-radius: 10px;
    border: 1px solid var(--sky);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(135, 206, 235, 0.2);
    position: relative;
}

.stat-item h2 {
    font-size: 1.9rem;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 900;
    letter-spacing: -1px;
}

.stat-item p {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    font-weight: 700;
    margin: 0;
    opacity: 0.8;
}

.stat-item:hover {
    background: var(--primary);
    border-color: #1a365d;
    transform: translateY(-10px);
}

.stat-item:hover h2 { color: var(--sky); }
.stat-item:hover p { color: var(--white); opacity: 1; }

.stat-item::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--sky);
    margin: 20px auto 0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.stat-item:hover::after {
    width: 60px;
    background: var(--white);
}

/* 5. SERVICES */
.services {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.2rem; 
    margin-bottom: 60px;
    font-weight: 800;
    color: var(--primary);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.img-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

/* 6. WHY CHOOSE Volex / FEATURES */
.features-highlight {
    padding: 100px 0;
    background: var(--primary);
}

.accent-bar {
    width: 80px;
    height: 4px;
    background: var(--sky);
    margin-top: 10px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--secondary);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    color: var(--white);
}

.feature-card:hover {
    border-color: var(--sky);
    transform: translateY(-5px);
}

.feature-card i {
    color: var(--sky);
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: block;
}

/* 7. CONTACT SECTION - FIXED COLOR VISIBILITY */
.contact-section {
    padding: 120px 0;
    background: #f8fafc; /* Light gray background to pop the white container */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    background: var(--white);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(10, 25, 47, 0.08);
}

/* Headquarters Info Styling */
.contact-info-premium h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary); /* DARK NAVY - Explicitly set for visibility */
    margin-bottom: 15px;
}

.contact-info-premium .sub-text {
    color: var(--slate);
    font-size: 1.1rem;
    margin-bottom: 40px;
    display: block;
}

.hq-card {
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.2);
}

.hq-card h3 {
    color: var(--sky);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hq-details {
    color: var(--light-slate); /* Light readable gray on dark card */
    font-style: normal;
    font-size: 1rem;
    line-height: 1.8;
}

.hq-email {
    display: inline-block;
    margin-top: 25px;
    color: var(--sky);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.hq-email:hover {
    border-color: var(--sky);
}

/* Form Styling */
/* FIX: Heading Visibility */
.contact-section h2 {
    color: #0a192f !important; /* Force Navy color */
    display: block;
    margin-bottom: 10px;
}

/* YOUR EXACT CODE WITH THE PLACEHOLDER ADJUSTMENT */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input {
    width: 100%;
    /* ADJUSTED: 12px horizontal padding ensures 'Business Email' fits */
    padding: 18px 12px; 
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    color: var(--primary);
    font-family: inherit;
    font-size: 0.9rem; 
    transition: var(--transition);
}

.contact-form input::placeholder {
    color: var(--slate);
    opacity: 0.8;
}

.contact-form textarea {
    grid-column: span 2;
    width: 100%;
    padding: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    height: 160px;
    font-family: inherit;
    resize: none;
}

.transmit-btn {
    grid-column: span 2;
    background: var(--sky);
    color: var(--primary);
    border: none;
    padding: 20px;
    border-radius: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(135, 206, 235, 0.3);
    transition: var(--transition);
}

.transmit-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* 8. PREMIUM MODAL SYSTEM */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(12px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
}

.modal-overlay.active { display: flex; }

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    position: relative;
    display: none;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-content.active { display: block; }

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.close-btn {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--slate);
}

.modal-form { display: flex; flex-direction: column; gap: 15px; }

.modal-form input, .modal-form select {
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    font-size: 16px; 
}

/* ==========================================
   9. FAQ ALIGNMENT & IMAGE SCALING
   ========================================== */
.faq-section {
    padding: 80px 0;
    background-color: #050b16; /* Dark background to make sky-blue/white pop */
    color: #ffffff;
}

.faq-wrapper {
    display: flex;
    align-items: flex-start; /* Keeps image level with the top question */
    gap: 40px;
    justify-content: space-between;
    flex-wrap: nowrap; /* Prevents wrapping until tablet size */
}

.faq-container {
    flex: 1;
    max-width: 650px; /* Keeps text lines readable */
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(135, 206, 235, 0.1); /* Subtle divider */
    padding-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #87CEEB; /* Sky Blue */
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.faq-answer {
    padding: 0 10px 15px 0;
    color: #cbd5e1; /* Light grey for text readability */
    line-height: 1.6;
    display: none; /* Controlled by your JS toggle */
}

/* Ensure active state shows answer */
.faq-item.active .faq-answer {
    display: block;
}

.faq-image-box {
    flex: 0 0 350px; /* Forces the box to stay at 350px width */
    display: flex;
    justify-content: center;
}

.faq-executive-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1.5px solid rgba(135, 206, 235, 0.3);
    transition: transform 0.3s ease;
}

.faq-executive-img:hover {
    transform: scale(1.02);
}

/* Mobile Responsive adjustment */
@media (max-width: 992px) {
    .faq-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-container {
        width: 100%;
    }

    .faq-image-box {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        order: -1; /* Puts image on top for mobile */
        margin-bottom: 40px;
    }
}

/* 10. CHAT WIDGET */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chat-btn {
    width: 65px;
    height: 65px;
    background: var(--sky);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.chat-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.32);
}

.chat-window {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 320px;
    background: var(--white);
    border-radius: 15px;
    display: none;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    border: 1px solid rgba(135, 206, 235, 0.12);
}

.chat-window.active { display: flex; }

.chat-header {
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    font-weight: 800;
}

/* 11. COOKIE BANNER */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(10, 25, 47, 0.96);
    color: var(--white);
    padding: 18px 22px;
    border-radius: 14px;
    border: 1px solid rgba(135, 206, 235, 0.16);
    box-shadow: 0 18px 45px rgba(0,0,0,0.28);
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.cookie-banner p {
    margin: 0;
    color: var(--light-slate);
    font-size: 0.92rem;
}

.cookie-banner a {
    color: var(--sky);
    font-weight: 700;
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

.cookie-banner .track-btn {
    white-space: nowrap;
}

/* 12. FIXED FOOTER / CONTACT GRID */
footer {
    background:
radial-gradient(circle at top, rgba(135,206,235,0.08), transparent 40%),
var(--primary);
    color: var(--white);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr; 
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-col h4 {
    color: var(--sky);
    margin-bottom: 25px;
    font-size: 0.95rem; 
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.footer-col p {
    color: var(--slate);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--slate);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
}

.footer-col ul li a:hover {
    color: var(--sky);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.signature {
    color: var(--sky);
    font-weight: 800;
    margin-top: 15px;
    display: block;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* 13. MOBILE RESPONSIVENESS */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 2.6rem; }
    .infra-split { grid-template-columns: 1fr; text-align: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .navbar {
        height: 74px;
    }

    .nav-links {
        top: 74px;
        height: calc(100vh - 74px);
        padding: 22px 16px 28px;
    }

    .logo {
        font-size: 1rem;
        gap: 10px;
    }

    .logo-img {
        height: 38px;
    }

    .quick-actions { 
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .action-card { width: 100%; }
    .hero-heavy { padding: 80px 0; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .contact-form { grid-template-columns: 1fr; }
    .contact-form textarea, .transmit-btn { grid-column: span 1; }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 16px;
    }

    .cookie-banner .track-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .quick-actions { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2rem; }
}