/* General Reset */
body, h1, h2, h3, p, ul, ol, li, a, button, input, textarea {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Body Styling */
body {
    background-color: white;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    margin: 0; /* Remove any default margins */
    padding-top: 60px; /* Ensure body starts below navbar */
}

/* Navbar Styling */
.navbar {
    height: 60px; /* Consistent navbar height */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Dropdown Styling */
.navbar .dropdown {
    position: relative;
}

.navbar .dropdown button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    padding: 8px 15px;
    cursor: pointer;
}

.navbar .dropdown-content {
    display: none;
    position: absolute;
    background-color: #444;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    min-width: 250px;
    right: 0;
    border-radius: 5px;
    max-width: 350px;
    overflow-wrap: break-word;
}

.navbar .dropdown:hover .dropdown-content {
    display: block;
}

/* Dropdown Items */
.dropdown-content a,
.dropdown-content p {
    color: white;
    padding: 10px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: #575757;
}

/* Icons */
.icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon {
    position: relative;
}

.icon button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: white;
}

.icon span {
    position: absolute;
    top: -5px;
    right: -10px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 3px 6px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Container */
.container {
    width: 80%;
    margin: 0 auto;
    padding: 80px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


