* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f7f7f7;
    color: #333;
}

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

.logo {
    font-size: 22px;
    font-weight: bold;
}

.nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

.banner {
    background: #005a9c;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.banner h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.banner p {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn {
    background: #ff9900;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

.section {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.section h2 {
    font-size: 26px;
    margin-bottom: 30px;
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product {
    background: white;
    padding: 20px;
    width: 280px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.p-img {
    width: 100%;
    height: 160px;
    background: #ddd;
    margin-bottom: 15px;
    border-radius: 5px;
}

.contact {
    background: white;
    max-width: 700px;
    margin: 50px auto;
    padding: 40px 20px;
    border-radius: 8px;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    background: #005a9c;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.whatsapp {
    margin-top: 20px;
}

.whatsapp a {
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}
