* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    background: #b01257;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
}

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

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

.hero {
    background: linear-gradient(
        rgba(176, 18, 87, 0.9),
        rgba(138, 8, 65, 0.9)
    );
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero p {
    max-width: 700px;
    margin: auto;
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: white;
    color: #b01257;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
}

section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    color: #b01257;
    margin-bottom: 40px;
    font-size: 36px;
}

.product-grid,
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.product-card,
.benefit {
    background: #fff5f9;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-card h3,
.benefit h3 {
    color: #b01257;
    margin-bottom: 15px;
}

.price {
    display: block;
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #b01257;
}

.about {
    background: #fff5f9;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: auto;
    font-size: 18px;
}

.contact form {
    max-width: 700px;
    margin: auto;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.contact button {
    background: #b01257;
    color: white;
}

footer {
    background: #8a0841;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

footer p {
    margin: 5px 0;
}

@media (max-width: 768px) {

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }
}