body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f4f4;
    color: #222;
}

.product-card {
    background: white;
    padding: 16px;
    margin: 20px;
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.product-card img {
    width: 100%;
    height: auto;
    display: block;
}
.product-card h3 {
    text-align: center;
    margin: 12px 0 0;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    justify-items: center;
}


header {
    text-align: center;
    padding: 30px 20px;
    background: white;
}

header h1 {
    margin-bottom: 8px;
}

header p {
    margin: 0;
}

main h2 {
    margin-left: 20px;
}

main {
    max-width: 1200px;
    margin: 0 auto;
}
.header-brand img {
    width: 360px;
    height: auto;
}
.header-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}