/* Enhanced Professional CSS Stylesheet for ExtraHand */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #1e293b;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Header Styles */
header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    color: white;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem; /* Added space between logo and nav */
}

/* Header Logo Image Styling */
.header-content .logo {
    /* Remove the text-based styles */
    font-family: inherit;
    font-size: inherit;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    
    /* Add image-specific styles */
    height: 50px; /* Control the height */
    width: auto; /* Maintain aspect ratio */
    display: block;
    transition: transform 0.3s ease;
}

.header-content .logo:hover {
    transform: scale(1.05);
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    transition: width 0.3s ease;
}

nav a:hover {
    color: #00d4ff;
    text-decoration: none;
}

nav a:hover::after {
    width: 100%;
}

/* Main Content */
main {
    flex: 1;
    padding: 3rem 0;
}

section {
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(148, 163, 184, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed, #ec4899);
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 32px 64px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(148, 163, 184, 0.05);
}

/* Hero Section */
.hero-section {
    position: relative;
    text-align: center;
    padding: 4rem 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Hero Logo Image Styling */
.hero-content img {
    width: 120px; /* Reduced from 150px */
    height: auto;
    margin: 1.5rem auto 2rem; /* Reduced margin */
    display: block;
    border-radius: 20px;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
    background: white;
    padding: 0.75rem; /* Reduced padding */
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #00d4ff, #7c3aed, #ec4899) border-box;
}

.hero-content img:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 32px 64px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(0, 212, 255, 0.1);
    filter: brightness(1.1);
}

.hero-content img::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed, #ec4899);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-content img:hover::before {
    opacity: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: #0f172a;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 3.75rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #7c3aed 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    color: #1e293b;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    border-radius: 2px;
}

h3 {
    font-size: 1.75rem;
    color: #334155;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    color: #475569;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.4);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(100, 116, 139, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(100, 116, 139, 0.4);
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
    color: white;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.1);
    margin-bottom: 1.5rem;
    transition: all 极速加速器;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed, #ec4899);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 极速加速器 solid rgba(148, 163, 184, 0.1);
}

.card-title {
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-weight: 600;
}

/* Service Cards */
.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
    height: 100%;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8极速加速器, #e2e8f0);
    border: 2px solid rgba(148, 163, 184, 0.1);
}

.icon-consulting {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    border-radius: 8px;
    position: relative;
}

.icon-management {
    width: 40极速加速器;
    height: 40px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    border-radius: 8px;
    position: relative;
}

.icon-support {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #00d4ff);
    border-radius: 8px;
    position: relative;
}

/* Mission Card */
.mission-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid rgba(124, 58, 237, 0.1);
}

/* Contact Info Card */
.contact-info-card {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.contact-item {
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    color: #475569;
    font-size: 1.05rem;
}

/* Forms */
.modern-form {
    background: rgba(248, 250, 252, 0.5);
   极速加速器: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #374151;
    font-size: 1rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
    color: #374151;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    transform: translateY(-1px);
}

/* Tables */
.table-container {
    margin-top: 3rem;
    background: rgba(248, 250, 252, 极速加速器.5);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.table-title {
    margin-bottom: 2rem;
    text-align: center;
    color: #1e293b;
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.modern-table thead {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
}

.modern-table th,
.modern-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.modern-table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1极速加速器;
}

.modern-table tbody tr {
    transition: background-color 0.2s ease;
}

.modern-table tbody tr:hover {
    background-color: #f8fafc;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-high {
    background: linear-gradient(135deg, #fecaca, #f87171);
    color: #7f1d1d;
}

.badge-medium {
    background: linear-gradient(135极速加速器, #fed7aa, #fdba74);
    color: #9a3412;
}

.badge-low {
    background: linear-gradient(135deg, #bbf7d0, #86efac);
    color: #14532d;
}

.badge-completed {
    background: linear-gradient(135deg, #c7d2fe, #a5b4fc);
    color: #312e81;
}

.badge-pending {
    background: linear-gradient(135deg, #fef3c7, #极速加速器);
    color: #92400e;
}

.badge-cancelled {
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
    color: #374151;
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1极速加速器);
}

/* Stats Section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed, #ec4899);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4极速加速器, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
   极速加速器-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

/* Footer */
footer {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    color: #cbd5e1;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #94a3b8;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00d4ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    color: #极速加速器;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20极速加速器;
    margin: -10px 0 0 -10px;
    border: 2px solid #e2e8f0;
    border-top: 2px solid #7c3aed;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Header logo responsive */
    .header-content .logo {
        height: 40px; /* Smaller on mobile */
    }
    
    nav ul {
        gap: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-section {
        padding: 3rem 1.5rem;
    }
    
    /* Hero logo responsive */
    .hero-content img {
        width: 120px;
        margin: 1.5rem auto 2rem;
        padding: 0.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    /* Header logo mobile */
    .header-content .logo {
        height: 35px; /* Even smaller on very small screens */
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    section {
        padding: 1.5rem 1rem;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
    
    /* Hero logo mobile */
    .hero-content img {
        width: 100px;
        margin: 1rem auto 1.5rem;
        padding: 0.5rem;
    }
}

/* New Service Icons */
.icon-painting {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 8px;
    position: relative;
}

.icon-painting::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%);
    background-size: 8px 8px;
}

.icon-drywall {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #a4b0be, #747d8c);
    border-radius: 8px;
    position: relative;
}

.icon-drywall::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        #ffffff 3px,
        #ffffff 6px
    );
}

.icon-dump {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00b894, #00a085);
    border-radius: 8px;
    position: relative;
}

.icon-dump::before {
    content: '🗑️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
}

.icon-moving {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0984e3, #074b83);
    border-radius: 8px;
    position: relative;
}

.icon-moving::before {
    content: '📦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
}

/* Remove old service icons */
.icon-consulting,
.icon-management,
.icon-support {
    display: none;
}

/* Grid layout for services */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Service card adjustments */
.service-card {
    text-align: center;
    padding: 2rem;
    height: 100%;
}

.service-card .btn-success {
    margin-top: 1rem;
}

/* Dropdown Menu Styles */
/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    font-size: 0.7em;
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 1rem 0;
    min-width: 200px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

/* FIX: Make dropdown items display vertically */
.dropdown-menu {
    display: block; /* Change from flex to block */
}

.dropdown-menu li {
    margin: 0;
    display: block; /* Ensure each li is block-level */
    width: 100%;
}

.dropdown-menu a {
    color: #cbd5e1;
    padding: 0.75rem 1.5rem;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-menu a:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }
    
    .dropdown-menu {
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 1.5rem;
        min-width: auto;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle::after {
        display: none;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}