body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #007bff;
    padding: 15px 20px;
    color: white;
}

.navbar img {
    height: 40px;
}

.navbar a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

.header {
    text-align: center;
    font-size: 2rem;
    padding: 30px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: white;
}

.section {
    padding: 50px;
    background: white;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    width: 80%;
}

.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.product-card, .team-member {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 30%;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card img {
    max-width: 100%;
    border-radius: 10px;
}

.footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
}

@media (max-width: 768px) {
    .product-card, .team-member {
        width: 100%;
    }
}
