:root {
    --teal: #00A78C;
    --teal-light: #2BBAA3;
    --teal-dark: #008C75;
    --teal-muted: #E0F2F1;
    --muted: #6b7280;
    --card-bg: rgba(255, 255, 255, 0.04);
    --glass: rgba(255, 255, 255, 0.03);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2f1 100%);
    min-height: 100vh;
    color: #1e293b;
    font-family: var(--font-family);
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
    width: 100%;
    background: transparent;
}

@media (min-width: 640px) {
    .container {
        padding: 1.5rem;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 2rem;
    }
}

/* ========== KEEP ALL YOUR EXISTING SERVICES PAGE STYLES ========== */
header {
    margin-bottom: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    header {
        text-align: left;
    }
}

header h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--teal-dark);
    line-height: 1.2;
}

@media (min-width: 640px) {
    header h1 {
        font-size: 1.75rem;
    }
}

@media (min-width: 768px) {
    header h1 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    header h1 {
        font-size: 2.75rem;
    }
}

header p {
    margin: 0.75rem 0 0;
    color: var(--teal-dark);
    font-size: 0.95rem;
    max-width: 800px;
}

@media (min-width: 640px) {
    header p {
        font-size: 1.05rem;
    }
}

@media (min-width: 768px) {
    header p {
        font-size: 1.15rem;
        margin: 1rem 0 0;
    }
}

/* Grid and Cards */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.card {
    border: 1px solid rgba(0, 167, 140, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: white;
    box-shadow: var(--shadow-md);
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card .title {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 10px;
    background: linear-gradient(180deg, var(--teal), var(--teal-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon svg {
    width: 24px;
    height: 24px;
    fill: white;
    opacity: 0.98;
}

.card h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--teal-dark);
    font-weight: 600;
    word-wrap: break-word;
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

.list {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pill {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    background: var(--teal-muted);
    font-size: 0.75rem;
    color: var(--teal-dark);
    border: 1px solid rgba(0, 167, 140, 0.2);
    white-space: normal;
    word-break: break-word;
    max-width: 100%;
}

/* Service Delivery Streams */
.header {
    text-align: center;
    margin: 3rem 0;
}

.header h1 {
    font-size: 1.75rem;
    color: var(--teal-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .header h1 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .header h1 {
        font-size: 2.75rem;
    }
}

.header p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .header p {
        font-size: 1.125rem;
        padding: 0;
    }
}

.tab-navigation {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .tab-navigation {
        flex-direction: row;
        justify-content: center;
    }
}

.tab-btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    color: #475569;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    text-align: center;
    width: 100%;
}

@media (min-width: 640px) {
    .tab-btn {
        width: auto;
        min-width: 200px;
    }
}

.tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.tab-btn.active.talent {
    background: var(--teal);
    color: white;
    transform: scale(1.02);
}

.tab-btn.active.business {
    background: var(--teal-dark);
    color: white;
    transform: scale(1.02);
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .section-title h2 {
        font-size: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .section-title h2 {
        font-size: 2rem;
    }
}

.content-section {
    display: none;
    background: transparent;
}
.content-wrapper{
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2f1 100%);
}
.content-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
    background: transparent;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
}

.card.talent,
.card.business {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-left: 4px solid;
    height: auto;
    width: 100%;
}

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.card-icon {
    padding: 0.75rem;
    border-radius: 10px;
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.card li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #475569;
    font-size: 0.875rem;
    line-height: 1.6;
    word-wrap: break-word;
}

/* PDF Viewer Styles */
.pdf-viewer {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 3rem 0;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    width: 100%;
}

@media (min-width: 768px) {
    .pdf-viewer {
        padding: 2rem;
    }
}

.pdf-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .pdf-tabs {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.pdf-tab {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--muted);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    width: 100%;
}

@media (min-width: 640px) {
    .pdf-tab {
        width: auto;
    }
}

@media (min-width: 768px) {
    .pdf-tab {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* PDF Display Container */
.pdf-container {
    border: 1px solid var(--teal-muted);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    background: #f8fafc;
    width: 100%;
    overflow: hidden;
}

@media (min-width: 768px) {
    .pdf-container {
        padding: 1.5rem;
    }
}

.pdf-display {
    width: 100%;
    height: 400px;
    border: 1px solid var(--teal-muted);
    border-radius: 8px;
    margin: 1.5rem 0;
    max-width: 100%;
    object-fit: contain;
}

@media (min-width: 768px) {
    .pdf-display {
        height: 500px;
    }
}

@media (min-width: 1024px) {
    .pdf-display {
        height: 600px;
    }
}

.pdf-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .pdf-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.pdf-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .pdf-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.pdf-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--teal-muted);
    width: 100%;
}

/* Button Styles */
.btn {
    background: var(--teal);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    min-height: 44px;
    text-align: center;
    width: 100%;
    max-width: 200px;
}

@media (min-width: 640px) {
    .btn {
        width: auto;
    }
}

@media (min-width: 768px) {
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

.btn:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn.btn-outline {
    background: transparent;
    border: 1px solid var(--teal);
    color: var(--teal);
}

.btn.btn-outline:hover {
    background: var(--teal);
    color: white;
}

/* ========== FOOTER STYLES (Added from second CSS) ========== */
/* Footer container */
.footer {
    background: #00A78C;
    color: #ddd;
    font-family: Arial, sans-serif;
    margin-top: 2rem;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 5rem;
    flex-wrap: wrap;
}

/* Sections */
.footer-section {
    flex: 1;
    margin: 0 1rem;
    min-width: 0;
    width: 100%;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

/* Links */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 0.5rem 0;
}

.footer-links a,
.footer-contact a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    word-break: break-word;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #DCE200;
}

/* Contact info */
.footer-contact p {
    margin: 0.3rem 0;
    color: #ddd;
    line-height: 1.6;
    word-break: break-word;
}

/* Bottom strip */
.footer-bottom {
    text-align: center;
    padding: 1rem;
    border-top: 1px solid #00A78C;
    font-size: 0.9rem;
    background: #00655B;
    width: 100%;
}

/* Map */
.footer-map {
    width: 100%;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    max-width: 300px;
    height: 120px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    border-radius: 8px;
}

/* ========== END FOOTER STYLES ========== */

/* Map Responsive Container */
.footer-map .map-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.footer-map .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    max-width: 100%;
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Images */
.responsive-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .card:hover {
        transform: none;
    }
    
    .tab-btn:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .card.talent:hover,
    .card.business:hover {
        transform: none;
    }
    
    /* Larger touch targets */
    .btn,
    .tab-btn,
    .pdf-tab {
        min-height: 48px;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .card {
        border: 2px solid var(--teal-dark);
    }
    
    .pill {
        border: 2px solid var(--teal-dark);
    }
    
    .btn {
        border: 2px solid var(--teal);
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        color: #f0f0f0;
    }
    
    .card {
        background: #2d2d2d;
        color: #f0f0f0;
        border-color: rgba(0, 167, 140, 0.3);
    }
    
    .card h3 {
        color: #f0f0f0;
    }
    
    .card p {
        color: #b0b0b0;
    }
    
    .pdf-viewer {
        background: #2d2d2d;
        color: #f0f0f0;
    }
    
    .pdf-container {
        background: #1a1a1a;
    }
}

/* Landscape orientation optimizations */
@media (orientation: landscape) and (max-height: 600px) {
    .container {
        padding: 1rem;
    }
    
    .card {
        min-height: auto;
        padding: 1rem;
    }
    
    .pdf-display {
        height: 300px;
    }
}

/* Print styles */
@media print {
    .footer,
    .pdf-actions,
    .tab-navigation {
        display: none !important;
    }
    
    .container {
        padding: 0;
        max-width: 100%;
    }
    
    .card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
        min-height: auto;
    }
    
    .pdf-viewer {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .container {
        padding: 0.75rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    header h1 {
        font-size: 1.25rem;
    }
    
    header p {
        font-size: 0.875rem;
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .grid {
        gap: 2rem;
    }
    
    .cards-grid {
        gap: 2rem;
    }
}

/* Prevent horizontal scroll on mobile */
body, html {
    max-width: 100%;  
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2f1 100%);
}

* {
    -webkit-tap-highlight-color: transparent;
}

/* Loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #00A78C ;
    color: white;
    padding: 1rem 8rem;
    font-family: Arial, sans-serif;
    position: sticky;
    top:0;
    z-index: 1000;
}

.navbar img {
    height: 80px;
    width: auto;
    background-color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    position: relative; 
    padding-bottom: 5px; 
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #DCE200;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #DCE200;
    transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: #DCE200;
}

.nav-links a.active::after {
    width: 100%;
}

/* Custom Dropdown Styling */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown .nav-link {
    padding-right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fa-angle-down {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .fa-angle-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 225px;
    background: white;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    overflow: hidden;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.9rem 1.3rem;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.dropdown-item:hover {
    background-color: #f8f9ff;
    color: #4a6cf7;
    border-left-color: #4a6cf7;
    padding-left: 1.6rem;
}

.dropdown-item:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

/* Animation for dropdown items */
.dropdown-item {
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-item {
    transform: translateX(0);
    opacity: 1;
}

.nav-item.dropdown:hover .dropdown-item:nth-child(1) {
    transition-delay: 0.1s;
}

.nav-item.dropdown:hover .dropdown-item:nth-child(2) {
    transition-delay: 0.15s;
}

.nav-item.dropdown:hover .dropdown-item:nth-child(3) {
    transition-delay: 0.2s;
}

.nav-item.dropdown:hover .dropdown-item:nth-child(4) {
    transition-delay: 0.25s;
}

/* Add arrow indicator to dropdown toggle */
.nav-item.dropdown .nav-link::after {
    content: '';
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.nav-item.dropdown:hover .nav-link::after {
    transform: rotate(-135deg);
}

/* Mobile Navigation Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ===== MOBILE STYLES ===== */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        background: #00A78C;
        flex-direction: column;
        text-align: center;
        gap: 0;
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        z-index: 999;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        transition: background-color 0.3s;
    }

    .nav-links a:hover {
        background-color: rgba(255,255,255,0.1);
    }
    
    .navbar img {
        height: 60px;
    }
    
    /* Footer mobile adjustments */
    .footer-content {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }
    
    .footer-section {
        margin: 0;
        width: 100%;
    }
    
    .footer-map iframe {
        max-width: 100%;
        height: 200px;
    }
}

/* Extra small screen adjustments */
@media screen and (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-links {
        top: 80px;
    }
    
    /* Footer small screen adjustments */
    .footer-content {
        padding: 1.5rem;
    }
}

/* ===== TABLET STYLES ===== */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .navbar {
        padding: 1rem 4rem;
    }
    
    /* Footer tablet adjustments */
    .footer-content {
        padding: 2rem 3rem;
    }
}

/* Additional responsive adjustments for footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }
    
    .footer-section {
        margin: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        padding: 2rem 5rem;
        gap: 3rem;
    }
}