/* ===================================
   BEEFIX - Yellow & Black Theme
   =================================== */

/* ===== ROOT VARIABLES ===== */
:root {
    --primary-yellow: #FFC107;
    --dark-yellow: #FFA000;
    --light-yellow: #FFD54F;
    --primary-black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-dark: #212529;
    --text-light: #6c757d;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ===== HEADER ===== */
.header {
    background: var(--white);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--primary-yellow);
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-black);
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.logo i {
    color: var(--primary-yellow);
}

.logo i {
    font-size: 2rem;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    gap: 30px;
    align-items: center;
}

.desktop-nav .nav-link {
    color: var(--primary-black);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
    color: var(--primary-yellow);
}

.desktop-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after {
    width: 100%;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    z-index: 1001;
    border: 2px solid var(--primary-yellow);
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--primary-black);
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: var(--light-gray);
    color: var(--primary-yellow);
    padding-left: 25px;
}

.dropdown-content a.active {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

.dropdown-content i {
    font-size: 1.2rem;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-warning {
    background: var(--primary-yellow) !important;
    border: none !important;
    color: var(--primary-black) !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease !important;
}

.btn-warning:hover {
    background: var(--dark-yellow) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    background: var(--primary-yellow);
    border: none;
    color: var(--primary-black);
    font-size: 1.5rem;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: var(--dark-yellow);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--primary-black);
    z-index: 1999;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--dark-gray);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-yellow);
    font-size: 1.5rem;
    font-weight: 800;
}

.mobile-logo i {
    font-size: 1.8rem;
}

.close-menu {
    background: transparent;
    border: none;
    color: var(--primary-yellow);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
}

.mobile-nav {
    padding: 20px 0;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--white);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    background: var(--dark-gray);
    border-left-color: var(--primary-yellow);
    color: var(--primary-yellow);
}

.mobile-nav-item i {
    font-size: 1.3rem;
    min-width: 25px;
}

/* Mobile Dropdown */
.mobile-nav-dropdown {
    border-bottom: 1px solid var(--dark-gray);
}

.mobile-nav-dropdown .dropdown-toggle {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--dark-gray);
}

.mobile-dropdown-content.active {
    max-height: 600px;
}

.mobile-dropdown-content a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 12px 50px;
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mobile-dropdown-content a:hover {
    background: var(--medium-gray);
    color: var(--primary-yellow);
    padding-left: 55px;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--dark-gray);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 120px 0 80px;
    margin-top: 70px;
    color: var(--white);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 193, 7, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid var(--primary-yellow);
}

.feature-badge i {
    color: var(--primary-yellow);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-outline-light {
    border: 2px solid var(--white) !important;
    color: var(--white) !important;
    background: transparent !important;
}

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

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* ===== QUICK BOOKING ===== */
.quick-booking {
    padding: 40px 0;
    background: var(--light-gray);
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.booking-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.booking-card h2 {
    color: var(--primary-black);
    font-weight: 700;
    font-size: 2rem;
}

.booking-card {
    padding: 50px 40px;
}

.form-control,
.form-select {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: 80px 0;
    background: var(--white);
}

.trust-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: var(--light-gray);
    transition: all 0.3s ease;
    height: 100%;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.trust-icon {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-black);
}

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

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.service-card {
    display: block;
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-yellow);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--primary-black);
    font-weight: 600;
}

/* ===== BRANDS SECTION ===== */
.brands-section {
    padding: 60px 0;
    background: var(--white);
}

.brands-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-black);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.brand-item {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.brand-item:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: scale(1.05);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background: var(--primary-yellow);
    color: var(--primary-black);
}

.stats-content h2 {
    font-weight: 800;
    margin-bottom: 10px;
}

.stats-content p {
    font-size: 1.3rem;
    font-weight: 500;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 20px;
}

.about-section p {
    color: var(--text-light);
    line-height: 1.8;
}

.about-section img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.feature-item i {
    font-size: 1.2rem;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.process-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-yellow);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.process-icon {
    font-size: 3rem;
    color: var(--primary-black);
    margin: 30px 0 20px;
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-black);
}

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

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-card i {
    font-size: 3rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary-black);
}

.benefit-card p {
    color: var(--text-light);
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* ===== FOOTER ===== */
.footer {
    background: #2d2d2d;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-yellow);
}

.footer-logo i {
    font-size: 2rem;
}

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-yellow);
    margin-right: 10px;
}

.footer h4 {
    color: var(--primary-yellow);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 992px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .booking-card {
        padding: 25px;
    }
    
    .trust-section,
    .services-section,
    .about-section,
    .process-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}

@media (max-width: 575px) {
    .logo a {
        font-size: 1.5rem;
    }
    
    .logo i {
        font-size: 1.7rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .feature-badge {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .mobile-menu {
        width: 280px;
    }
    
    .booking-card {
        padding: 20px;
    }
    
    .trust-card,
    .service-card,
    .process-card {
        padding: 20px;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    .chat-window {
        width: calc(100vw - 40px);
        right: -10px;
    }
    
    .exit-popup-content {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .exit-popup-content h2 {
        font-size: 1.5rem;
    }
    
    .exit-popup-content strong {
        font-size: 1.5rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.trust-card,
.process-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== UTILITY CLASSES ===== */
.btn-lg {
    padding: 12px 30px !important;
    font-size: 1.1rem !important;
}

.text-warning {
    color: var(--primary-yellow) !important;
}

.bg-warning {
    background-color: var(--primary-yellow) !important;
}

/* ===== CONVERSION OPTIMIZATIONS ===== */

/* Pulse Animation for Urgency */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-yellow);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stars i {
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--primary-black);
    font-size: 1.1rem;
}

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

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.badge-item i {
    font-size: 1.5rem;
}

/* Stats Section Improvements */
.stat-item {
    padding: 20px;
}

.stat-item h2 {
    color: var(--white);
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 999;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.sticky-mobile-cta .btn {
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Badge Pulse */

/* Form Improvements */
.form-control-lg,
.form-select-lg {
    font-size: 1.1rem;
    padding: 15px;
}

/* ===== CHAT WIDGET ===== */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-yellow);
    border: none;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
}

.chat-button i {
    font-size: 1.8rem;
    color: var(--primary-black);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: none;
    animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: var(--primary-black);
    color: white;
    padding: 15px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 5px;
    animation: pulse 2s infinite;
}

.chat-body {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 15px;
}

.bot-message .message-content {
    background: var(--light-gray);
    padding: 12px 15px;
    border-radius: 15px 15px 15px 0;
    display: inline-block;
    max-width: 80%;
}

.message-time {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 5px;
}

.chat-actions {
    margin-top: 20px;
}

/* ===== EXIT INTENT POPUP ===== */
.exit-intent-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.exit-popup-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: popIn 0.5s ease;
}

@keyframes popIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.exit-popup-close:hover {
    color: var(--primary-black);
}

.exit-popup-content h2 {
    color: var(--primary-black);
    margin-bottom: 20px;
}

.exit-popup-content .lead {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.exit-popup-content strong {
    color: var(--primary-yellow);
    font-size: 2rem;
}
