:root {
    --mint: #5BEFBE;
    --light-blue: #3DBAEF;
    --medium-blue: #4480EF;
    --royal-blue: #002CF0;
    --aqua: #93F0F4;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #3DBAEF; 
    color: white;
}

.site-title {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
}

body {
    background: white;
    color: #000;
}

header {
    background: #4480EF;
    padding: 20px;
}

.logo {
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to bottom, var(--light-blue), var(--medium-blue));
    color: white;
}

hero h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    background: #5BEFBE;
    color: #002CF0;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
}

.btn:hover {
    background: red;
}

.product-card img {
    max-width: 100%;
    height: auto;
    display: block;
}



@media (max-width: 768px) {
    nav ul {
        gap: 15px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .product-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Phone Width */
@media (max-width: 480px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    .hero h2 {
        font-size: 1.7rem;
    }

    .hero p {
        font-size: 1rem;
    }
}