* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #f5f6f8;
    color: #222;
}

/* HEADER */
.main-header {
    background: #fff;
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 45px;
}

.brand-text h1 {
    font-size: 22px;
    font-weight: 700;
}

.brand-text span {
    font-size: 12px;
    color: #777;
    letter-spacing: 1px;
}

.nav-menu a {
    margin-left: 30px;
    text-decoration: none;
    font-weight: 500;
    color: #333;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: #c62828;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #c62828, #e53935);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
}

/* PRODUCTS */
.products-section {
    padding: 70px 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.product-card {
    background: white;
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-card i {
    font-size: 40px;
    color: #c62828;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* FOOTER */
.footer {
    background: #111;
    color: #bbb;
    text-align: center;
    padding: 18px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu a {
        margin: 0 10px;
    }

    .products-section {
        padding: 40px 20px;
    }
}
