*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#f5f5f5;
}
body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#f5f5f5;
}

header{
    background:#111;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    font-weight:bold;
}

nav a:hover{
    color:orange;
}

.hero{
    background:#ff6b6b;
    color:white;
    text-align:center;
    padding:50px;
}

.products{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    padding:40px;
}

.card{
    background:white;
    padding:20px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.card img{
    width:100%;
    border-radius:8px;
}

.card h3{
    margin:15px 0 5px;
}

.card p{
    color:#e91e63;
    font-weight:bold;
    font-size:18px;
}

.card button{
    background:#111;
    color:white;
    border:none;
    padding:10px 20px;
    cursor:pointer;
    border-radius:5px;
}

.card button:hover{
    background:#ff6b6b;
}

header{
    background:#ff6600;
    color:#fff;
    padding:15px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

header h1{
    font-size:28px;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    font-weight:bold;
}

nav a:hover{
    color:yellow;
}

.hero{
    background:#222;
    color:white;
    text-align:center;
    padding:80px 20px;
}

.hero h2{
    font-size:40px;
    margin-bottom:10px;
}

.hero p{
    font-size:20px;
}

#products{
    padding:40px;
    text-align:center;
}

.products{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
    margin-top:30px;
}

.card{
    background:white;
    width:250px;
    padding:15px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,0.2);
}

.card img{
    width:100%;
    border-radius:10px;
}

.card h3{
    margin:15px 0 10px;
}

.card p{
    color:#ff6600;
    font-size:18px;
    margin-bottom:10px;
}

.card button{
    width:100%;
    padding:10px;
    background:#ff6600;
    color:white;
    border:none;
    border-radius:5px;
    cursor:pointer;
    font-size:16px;
}

.card button:hover{
    background:#e65c00;
}

#contact{
    background:#333;
    color:white;
    text-align:center;
    padding:30px;
    margin-top:40px;
}

@media(max-width:768px){
    header{
        flex-direction:column;
    }

    nav{
        margin-top:10px;
    }

    .hero h2{
        font-size:30px;
    }

    .products{
        flex-direction:column;
        align-items:center;
    }
}
.contact-container{
    width:90%;
    max-width:1100px;
    margin:50px auto;
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.contact-info{
    flex:1;
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.contact-form{
    flex:1;
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:12px;
    margin:10px 0;
    border:1px solid #ccc;
    border-radius:5px;
    font-size:16px;
    box-sizing:border-box;
}

.contact-form button{
    width:100%;
    padding:12px;
    background:#111;
    color:white;
    border:none;
    border-radius:5px;
    font-size:18px;
    cursor:pointer;
}

.contact-form button:hover{
    background:#ff6b6b;
}
