/* General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(255, 255, 255);
}

body {
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.pick {
    color: hsl(0, 0%, 0%);
    padding: 10px;
}

/* Header */
header {
    background: #111827;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    font-family: cursive;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    font-size: 20px;
    font-weight: bold;
     z-index: 1001;
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    user-select: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background: #1f2937;
    min-width: 160px;
    border-radius: 6px;
    flex-direction: column;
    z-index: 1000;
}

.dropdown-content a {
    padding: 10px;
    text-decoration: none;
    color: white;
    display: block;
}

.dropdown-content a:hover {
    background: #374151;
}

.dropdown.show .dropdown-content {
    display: flex;
}

/* Hamburger */
.menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
}

/* Mobile Styles */
@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background: #111827;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 15px 0;
    }

    nav.show {
        display: flex;
    }

    .dropdown-content {
        position: static;
        background: #1f2937;
        border-radius: 0;
    }

    .menu-btn {
        display: flex;
    }
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    margin: 1rem 0;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.7s ease;
}

img {
    width: 100%;
}

.benefit-card.show {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card h2 {
    margin-bottom: 1rem;
    color: #2c7be5;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #1b4332;
    color: white;
    text-align: center;
    padding: 15px;
}