/* GENERAL STYLES */
body {
    font-family: Tahoma, Arial, sans-serif;
    text-align: left;
     background: #f4f4f9 !important;
    margin: 0;
    padding: 0;
    direction: ltr;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* CONTAINER */
.container_2 {
    max-width: 1200px;
    margin: 20px auto;
    background: #dfff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* HEADER */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    background: #003366;
    color: white;
    padding: 0 20px;
}

/* LOGO */
.logo {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 10px;
}

.logo img {
    max-height: 50px;
}

/* NAVIGATION */
.nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

.nav ul li {
    position: relative;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
}

.nav ul li a {
    color: white;
    text-decoration: none;
}

.nav ul li:hover {
    background: #0056b3;
}

.nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    color: black;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.nav ul li:hover ul {
    display: block;
}

/* MOBILE NAVIGATION */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #003366;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
}

.sidenav a {
    padding: 10px 20px;
    font-size: 18px;
    color: white;
    display: block;
}

.sidenav a:hover {
    background: #0056b3;
}

.menu-icon {
    font-size: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: none;
}

/* HERO SECTION */
.hero {
    height: 200px;
    background: linear-gradient(to right, red, yellow);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    padding-left: 20px;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3em;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    background: linear-gradient(to right, #d92332, #ffcc00);
    padding: 20px;
    border-radius: 8px;
}

/* MAIN CONTENT */
.breadcrumb {
    text-align: left;
    padding: 15px 20px;
    font-size: 16px;
    background: #eee;
}

/* CARD DESIGN */
.card {
    background: #ff8c00;
    border: 2px solid #004080;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* LIST STYLES */
.card  .fig-list, .age-list, .usag-list, .benefits-list, .offer-list {
    list-style-type: none;
    padding: 15px;
    background: #f0f8ff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.card ul li, .fig-list li, .age-list li, .usag-list li, .benefits-list li, .offer-list li {
    text-align: left;
    padding: 12px 15px;
    font-size: 1.3em;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.card ul li:last-child {
    border-bottom: none;
}

.card ul li::before {
    content: "✔️";
    margin-right: 10px;
    color: #004080;
    font-size: 18px;
}

/* ALTERNATING COLORS */
.fig-list li:nth-child(odd), .age-list li:nth-child(odd), .usag-list li:nth-child(odd) {
    background: #ffeb3b;
}

.fig-list li:nth-child(even), .age-list li:nth-child(even), .usag-list li:nth-child(even) {
    background: #4caf50;
    color: white;
}

/* MORE BUTTON */
.more-button {
    padding: 15px 20px;
    margin-top: 20px;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    display: block;
    text-align: center;
    background: darkblue;
    color: white;
    transition: background 0.3s ease, transform 0.2s ease;
}

.more-button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: auto;
        padding: 10px 20px;
    }

    .menu-icon {
        display: block;
    }

    .nav {
        display: none;
    }

    .hero {
        height: auto;
        padding: 30px 15px;
    }

    .hero h1 {
        font-size: 40px;
        padding-left: 10px;
    }

    .container {
        width: 95%;
        padding: 15px;
    }
}
