a {
    text-decoration: none;

}

/* ===== FOOTER STYLES ===== */
.footer {
    background: black;
    color: white;
    width: 100%;
    overflow: hidden;
}

.footer-main {
    padding: 40px;
}

.footer-container {
    max-width: 1360px;
    /* 1440px - 80px padding */
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.footer-section {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Company Info Section */
.company-info {
    gap: 20px;
}

.footer-logo {
    width: 143px;
    height: 85px;
    object-fit: contain;
}

.company-description {
    color: white;
    font-size: 16px;
    font-family: 'REM', sans-serif;
    font-weight: 300;
    line-height: 24px;
    margin: 0;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 13px;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    color: #FFD11A;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: scale(1.1);
    color: #FFE55C;
}

/* Contact Info Section */
.contact-info {
    gap: 10px;
}

.footer-title {
    color: white;
    font-size: 20px;
    font-family: 'REM', sans-serif;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-icon {
    color: #B32120;
    font-size: 16px;
    width: 16px;
    text-align: center;
}

.contact-label {
    color: #D5DBE2;
    font-size: 16px;
    font-family: 'REM', sans-serif;
    font-weight: 300;
    line-height: 24px;
}

.contact-text,
.contact-number {
    color: white;
    font-size: 16px;
    font-family: 'REM', sans-serif;
    font-weight: 300;
    line-height: 24px;
}

/* Quick Links Section */
.quick-links {
    gap: 10px;
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: white;
    font-size: 16px;
    font-family: 'REM', sans-serif;
    font-weight: 300;
    line-height: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FFD11A;
}

/* Email Subscription Section */
.email-subscription {
    flex: 0 0 320px;
}

.subscription-card {
    padding: 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid #D9D9D9;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subscription-title {
    color: black;
    font-size: 18px;
    font-family: 'REM', sans-serif;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

.subscription-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-input {
    height: 40px;
    min-width: 240px;
    padding: 12px 16px;
    background: white;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'REM', sans-serif;
    font-weight: 300;
    line-height: 24px;
    color: #1E1E1E;
}

.form-input::placeholder {
    color: #1E1E1E;
}

.form-input:focus {
    outline: none;
    border-color: #B32120;
}

.submit-button {
    padding: 16px 20px;
    background: #B32120;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    font-family: 'REM', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 0.56px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #961F1E;
}

/* Footer Bottom */
.footer-bottom {
    background: #333B47;
    padding: 20px 40px;
}

.footer-bottom-container {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 70px;
    align-items: center;
}

.copyright,
.website-credit {
    color: #B0BBC9;
    font-size: 12px;
    font-family: 'REM', sans-serif;
    font-weight: 400;
    line-height: 16px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.bottom-link,
.credit-link {
    color: #B0BBC9;
    font-size: 12px;
    font-family: 'REM', sans-serif;
    font-weight: 400;
    line-height: 16px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.bottom-link-text {
    color: #B0BBC9;
    font-size: 12px;
    font-family: 'REM', sans-serif;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    margin: auto;
    margin-top: 20px;
    max-width: 900px;
}

.bottom-link:hover,
.credit-link:hover {
    color: white;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Styles */
@media (max-width: 1024px) {
    .footer-container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-section {
        flex: 1 1 45%;
        min-width: 280px;
    }

    /* .email-subscription {
        flex: 1 1 100%;
    } */

    .subscription-card {
        width: 100%;
        max-width: none;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 40px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-section {
        width: 100%;
        flex: none;
        padding: 10px;
    }

    .contact-info {
        height: auto;
        min-height: 200px;
    }

    .links-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        align-content: flex-start;
    }

    .footer-link {
        flex: 0 0 auto;
    }

    .email-subscription {
        width: 100%;
    }



    .footer-bottom {
        padding: 20px 20px 30px 20px;
    }

    .footer-bottom-container {
        gap: 16px;
    }

    .footer-links {
        gap: 10px;
    }

    .copyright {
        order: 3;
    }

    .website-credit {
        order: 1;
    }

    .footer-links {
        order: 2;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .footer-main {
        padding: 30px 20px;
    }

    .footer-bottom {
        padding: 15px 15px 25px 15px;
    }

    .links-list {
        gap: 15px;
    }

    .footer-links {
        gap: 8px;
    }

    .rv-category-card {
        width: 100%;
        max-width: 300px;
        height: 220px;
        padding: 15px;
    }
}


/* ===== HEADER STYLES ===== */
.header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Desktop Header */
.header-container {
    display: flex;
    height: 154px;
    background: white;
    box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.10);
    position: relative;
}


.header-left,
.header-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.header-center {
    width: 272px;
    /* padding: 20px 30px; */
    background: white;
    box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -10px;
}

.main-logo {
    width: 100%;
    object-fit: contain;
}

/* Top Bars */
.header-top-bar {
    padding: 20px 60px;
    background: #333B47;
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-left .header-top-bar {
    justify-content: flex-start;
    margin-right: -1px;
}

.header-right .header-top-bar {
    justify-content: flex-end;
}

.contact-items,
.social-items {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-item,
.social-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover,
.social-item:hover {
    transform: translateY(-1px);
}

.contact-icon,
.social-icon {
    color: #FFD11A;
    font-size: 16px;
    width: 16px;
    text-align: center;
}

.contact-text,
.social-text {
    color: white;
    font-size: 16px;
    font-family: 'REM', sans-serif;
    font-weight: 600;
    line-height: 24px;
}

/* Main Navigation */
.header-main-nav {
    flex: 1;
    padding: 0 60px;
    background: #F6F7F9;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-left .header-main-nav {
    justify-content: center;
    padding: 10px 50px;
    flex-wrap: wrap;
    padding-right: 20% !important;
}

.header-right .header-main-nav {
    justify-content: center;
    padding: 10px 50px;
    flex-wrap: wrap;
    padding-left: 20% !important;
}

.nav-dropdown {
    position: relative;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-item:hover .nav-text {
    color: #B32120;
}

.nav-text {
    color: black;
    font-size: 20px;
    font-family: 'REM', sans-serif;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.40px;
}

.nav-icon {
    color: #B32120;
    font-size: 16px;
}

/* Dropdown Menus */
.dropdown-menu {
    position: absolute;
    top: 31px;
    left: 0;
    background: white;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* Shop Dropdown */
.shop-dropdown {
    /* width: 684px; */
    /* height: 440px; */
    background: #F6F7F9;
    display: flex;
}

.dropdown-sidebar {
    width: 188px;
    background: #333B47;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 20px;
}

.dropdown-sidebar a:hover {
    color: white;
}

.dropdown-menu.simple-dropdown a:hover {
    color: white;
}

.sidebar-item {
    padding: 10px;
    color: white;
    font-size: 14px;
    font-family: 'REM', sans-serif;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 4px;
}

.sidebar-item.active {
    background: linear-gradient(180deg, #C50100 50%, #A60302 50%);
}

.sidebar-item:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(2px);
}

.dropdown-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: all 0.3s ease;
}

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

.content-title {
    color: black;
    font-size: 20px;
    font-family: 'REM', sans-serif;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
    transition: all 0.3s ease;
}

.shop-all-link {
    color: #C50100;
    font-size: 14px;
    font-family: 'REM', sans-serif;
    font-weight: 600;
    line-height: 20px;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.shop-all-link:hover {
    color: #A60302;
    transform: translateX(2px);
}

.content-divider {
    height: 2px;
    background: #B0BBC9;
    margin: -10px 0;
}

.rv-categories {
    display: flex;
    gap: 10px;
}

.rv-category-card {
    width: 300px;
    height: 250px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rv-category-card:hover {
    transform: translateY(-5px);
    box-shadow: -2px 6px 12px rgba(0, 0, 0, 0.15);
}

.category-image {
    width: 100%;
    height: 83.56px;
    object-fit: cover;
    border-radius: 4px;
}

.category-name {
    color: black;
    font-size: 16px;
    font-family: 'REM', sans-serif;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    margin: 0;
}

/* Simple Dropdown */
.simple-dropdown {
    width: 190px;
    background: white;
    display: flex;
    flex-direction: column;
}

.dropdown-link {
    padding: 16px 20px;
    background: #394453;
    border-bottom: 2px solid #516278;
    color: white;
    font-size: 16px;
    font-family: 'REM', sans-serif;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background: #516278;
}

/* CTA Button */
.cta-button {
    padding: 22px 32px;
    background: #B32120;
    border: none;
    color: white;
    font-size: 18px;
    font-family: 'REM', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 0.36px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #961F1E;
    transform: translateY(-2px);
}

.button-shadow {
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 26.63px;
    background: #961F1E;
    z-index: -1;
}

.button-text {
    position: relative;
    z-index: 1;
}

/* Mobile Header */
.mobile-header {
    display: none;
    flex-direction: column;
    width: 100%;
}

.mobile-top-bar {
    padding: 16px 30px;
    background: #333B47;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-contact-icons,
.mobile-social-icons {
    display: flex;
    gap: 13px;
}

.mobile-contact-icon,
.mobile-social-icon {
    color: #FFD11A;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-icon {
    font-size: 20px;
}

.mobile-contact-icon:hover,
.mobile-social-icon:hover {
    transform: scale(1.1);
    color: #FFE55C;
}

.mobile-main-bar {
    padding: 20px 40px;
    background: #F6F7F9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo {
    width: 143px;
    height: 85px;
    object-fit: contain;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    color: black;
    font-size: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: absolute;
    top: 180px;
    left: 0;
    width: 100%;
    height: calc(100vh - 119px);
    background: #394453;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.mobile-menu-sections {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu-section {
    width: 100%;
    position: relative;
}

.mobile-menu-section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 1px;
    background: #8597AB;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
}

.mobile-menu-title {
    color: #ECEFF2;
    font-size: 18px;
    font-family: 'REM', sans-serif;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

.mobile-menu-title.shop {
    color: white;
    font-weight: 700;
}

.mobile-menu-icon {
    color: #B0BBC9;
    font-size: 16px;
}

.mobile-menu-items {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-items.hidden {
    display: none;
}

.mobile-menu-tag {
    padding: 8px 12px;
    background: #516278;
    color: white;
    font-size: 16px;
    font-family: 'REM', sans-serif;
    font-weight: 300;
    line-height: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-menu-tag:hover {
    background: #657992;
}

.mobile-menu-link {
    flex: 1;
    padding: 10px;
    color: white;
    font-size: 16px;
    font-family: 'REM', sans-serif;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-contact {
    color: #ECEFF2;
    font-size: 18px;
    font-family: 'REM', sans-serif;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    padding: 10px 0;
    display: block;
}

.mobile-cta-button {
    width: 100%;
    padding: 22px 32px;
    background: #B32120;
    border: none;
    color: white;
    font-size: 18px;
    font-family: 'REM', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 0.36px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-cta-button:hover {
    background: #961F1E;
}

/* ===== RESPONSIVE DESIGN ===== */

.search-form-container .btn-primary {
    background-color: #b32120;
    border: none;
    font-size: 1rem;
    min-height: 37.4px;
    border-radius: 0px;
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {

    /* Header Container Adjustments */
    .header-container {
        height: auto;
        min-height: 140px;
    }

    /* Top Bar Adjustments */
    .header-top-bar {
        padding: 15px 40px;
        min-height: 50px;
    }

    .contact-items,
    .social-items {
        gap: 20px;
    }

    .contact-text,
    .social-text {
        font-size: 14px;
    }

    /* Center Logo Adjustments */
    .header-center {
        width: 220px;
        /* padding: 15px 20px; */
    }

    /* .main-logo {
        max-height: 70px;
    } */

    /* Main Navigation Adjustments */
    .header-main-nav {
        padding: 0 30px;
        gap: 15px;
        min-height: 70px;
    }

    .header-left .header-main-nav {
        padding-left: 40px;
        padding-right: 20px;
    }

    .header-right .header-main-nav {
        padding-left: 20px;
        padding-right: 40px;
    }

    /* Navigation Text Adjustments */
    .nav-text {
        font-size: 18px;
        line-height: 22px;
    }

    /* Dropdown Adjustments */
    .shop-dropdown {
        /* width: 600px; */
        /* height: 380px; */
    }

    .dropdown-sidebar {
        width: 160px;
        padding: 15px;
    }

    .sidebar-item {
        padding: 8px;
        font-size: 13px;
    }

    .dropdown-content {
        padding: 15px;
        gap: 20px;
        width: 550px;
    }

    .content-title {
        font-size: 18px;
    }

    .rv-categories {
        gap: 8px;
        flex-wrap: wrap;
    }


    .rv-category-card {
        width: 280px;
        height: 230px;
        padding: 8px;
    }

    .category-image {
        height: 70px;
    }

    .category-name {
        font-size: 14px;
    }

    /* Simple Dropdown Adjustments */
    .simple-dropdown {
        width: 170px;
    }

    .dropdown-link {
        padding: 12px 16px;
        font-size: 14px;
    }

    /* CTA Button Adjustments */
    .cta-button {
        padding: 18px 24px;
        font-size: 16px;
    }

    .button-shadow {
        height: 20px;
        bottom: -3px;
    }
}

/* Large Tablet Specific (901px - 1024px) */
@media (max-width: 1024px) and (min-width: 901px) {
    .header-container {
        height: 145px;
    }

    .header-center {
        width: 240px;
    }

    .nav-text {
        font-size: 19px;
    }

    .shop-dropdown {
        /* width: 640px; */
        /* height: 400px; */
    }
}

/* Medium Tablet Specific (769px - 900px) */
@media (max-width: 900px) and (min-width: 769px) {
    .header-container {
        height: 135px;
    }

    .header-center {
        width: 200px;
        /* padding: 12px 15px; */
    }

    /* .main-logo {
        max-height: 60px;
    } */

    .header-main-nav {
        gap: 10px;
        min-height: 65px;
    }

    .nav-text {
        font-size: 17px;
    }

    .shop-dropdown {
        /* width: 550px; */
        /* height: 360px; */
    }

    .dropdown-sidebar {
        width: 140px;
        padding: 12px;
    }

    .sidebar-item {
        padding: 6px;
        font-size: 12px;
    }

    .dropdown-content {
        padding: 12px;
        gap: 15px;
    }

    .content-title {
        font-size: 16px;
    }

    .shop-all-link {
        font-size: 12px;
    }

    .rv-categories {
        gap: 6px;
    }

    .rv-category-card {
        padding: 6px;
    }

    .category-image {
        height: 60px;
    }

    .category-name {
        font-size: 13px;
    }

    .simple-dropdown {
        width: 150px;
    }

    .dropdown-link {
        padding: 10px 12px;
        font-size: 13px;
    }

    .cta-button {
        padding: 15px 20px;
        font-size: 15px;
    }

    /* Adjust contact and social items for smaller tablets */
    .contact-items,
    .social-items {
        gap: 15px;
    }

    .contact-text,
    .social-text {
        font-size: 13px;
    }

    .header-top-bar {
        padding: 12px 30px;
    }

    .header-left .header-main-nav {
        padding-left: 30px;
        padding-right: 15px;
    }

    .header-right .header-main-nav {
        padding-left: 15px;
        padding-right: 30px;
    }
}

/* Hide desktop header on mobile */
@media (max-width: 768px) {
    .header-container {
        display: none;
    }

    .mobile-header {
        display: flex;
    }

    .rv-category-card {
        width: 300px;
        height: 250px;
    }
}

/* Hide mobile header on desktop */
@media (min-width: 769px) {
    .mobile-header {
        display: none;
    }

    .mobile-menu-overlay {
        display: none;
    }
}

/* Dropdown Positioning Fixes for Tablets */
@media (max-width: 1024px) and (min-width: 769px) {

    /* Ensure dropdowns don't overflow on smaller screens */
    .nav-dropdown {
        position: relative;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
    }

    /* Adjust positioning for right-side dropdowns */
    .header-right .nav-dropdown .dropdown-menu {
        /* right: 0; */
        left: auto;
    }

    /* Ensure shop dropdown doesn't go off-screen */
    .header-left .nav-dropdown:first-child .dropdown-menu {
        left: 0;
    }

    /* Center logo responsive height */
    .logo-container {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    /* Prevent text wrapping on navigation items */
    .nav-text {
        white-space: nowrap;
    }

    /* Ensure proper flexbox behavior */
    .header-left,
    .header-right {
        flex: 1;
        min-width: 0;
        /* Allow flexbox to shrink */
    }

    /* Prevent overflow on smaller tablet screens */
    .header-main-nav {
        overflow: visible;
        flex-wrap: nowrap;
    }

    /* Adjust dropdown arrow positioning */
    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 20px;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #F6F7F9;
    }

    .simple-dropdown::before {
        border-bottom-color: #394453;
    }

    /* Ensure CTA button doesn't get too cramped */
    .cta-button {
        min-width: 120px;
        text-align: center;
    }
}

.header-center {
    width: 272px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background: transparent;
    box-shadow: none;
}

.logo-container {
    background: transparent;
    padding: 15px 30px;
    border-radius: 0 0 20px 20px;
    margin: 0 8px;
    /* box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.10); */
}

.main-logo {
    width: 100%;
    max-width: 200px;
    object-fit: contain;
}