body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #111;
    background: #fff;
}

/* HERO */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0f0f0f;
    color: white;
    padding: 40px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

/* BLOCKS */
.block {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.block .text {
    flex: 1;
    padding: 80px;
}

.block .text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.block .text p {
    font-size: 16px;
    opacity: 0.8;
    max-width: 450px;
}

.block .image {
    flex: 1;
    background: #eaeaea;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
}

/* reverse layout */
.reverse {
    flex-direction: row-reverse;
}

/* PRODUCT */
.product-section {
    padding: 80px;
    text-align: center;
}

.product-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.product-card {
    width: 280px;
    text-decoration: none;
    color: black;
}

.product-card img {
    width: 100%;
    border-radius: 12px;
}

/* CTA */
.cta {
    padding: 100px 40px;
    text-align: center;
    background: #f5f5f5;
}

.cta a {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: black;
    color: white;
    text-decoration: none;
}

/* FINAL */
.final {
    padding: 100px 40px;
    text-align: center;
}