.main-section {
    display: flex;
    gap: 20px;
    padding: 25px 20px;
    max-width: 1300px;
    margin: auto;
}

.sidebar {
    width: 22%;
}

.sidebar ul {
    list-style: none;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.sidebar ul li a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #072041;
    border-bottom: 1px solid #eee;
}

.sidebar ul li a:hover {
    background: #e8f1fb;
}

/* DROPDOWN SIDEBAR */


.dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
    cursor: pointer;
    color: #072041;
}

.dropdown-toggle:hover {
    background: #e8f1fb;
}

.dropdown-arrow {
    font-size: 1rem;
    transition: transform .3s ease;
}

.sidebar-submenu {
    display: none;
    list-style: none;
    background: #f8f9fb;
}

.sidebar-submenu li a {
    display: block;
    padding: 4px 10px;
    font-size: 14px;
    color: #072041;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.sidebar-submenu li a:hover {
    background: #e8f1fb;
}

/* OPEN STATE */

.sidebar-dropdown.active .sidebar-submenu {
    display: block;
}

.sidebar-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}


/* SLIDER */

.slider-container {
    width: 78%;
    height: 330px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
    background: #fff;
}

.slider {
    display: flex;
    height: 100%;
    transition: transform .6s ease;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #072041;
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
}

.prev {
    left: 12px;
    z-index: 10;
}

.next {
    right: 12px;
    z-index: 10;
}

/* BOTTOM SECTION */

.bottom-section {
    display: flex;
    gap: 20px;
    padding: 30px 20px;
    max-width: 1300px;
    margin: auto;
}

.cards {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
}

.cards a {
    flex: 1;
    display: flex;
}

.cards a .card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cards a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.customer-care {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.customer-care h2 {
    background: #072041;
    color: #fff;
    padding: 10px 14px;
    font-size: 15px;
}

.customer-care ul {
    list-style: none;
    padding: 10px 14px;
}

.customer-care ul li a {
    display: block;
    padding: 8px 0;
    text-decoration: none;
    color: #072041;
    font-size: 14px;
}