body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #f7f7f7;
    color: #333;
}

header {
    text-align: center;
    padding: 40px 0;
}

.logo {
    width: 400px;
    height: auto;
}

.hero {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

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

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 40px;
}

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

.product img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.product p {
    font-size: 15px;
    color: #666;
}

footer {
    text-align: center;
    padding: 20px;
    background: #eee;
    margin-top: 40px;
}
