* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #0c0c0c;
    color: #fff;
}

/* ================= HEADER ================= */

.header {
    background: #000;
    border-bottom: 2px solid #b30000;
}

.header-container {
    max-width: 1300px;
    margin: auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #b30000;
}

.contact-links {
    display: flex;
    gap: 18px;
}

.contact-links a {
    color: #fff;
    font-size: 1.4rem;
    transition: color 0.3s;
}

.contact-links a:hover {
    color: #b30000;
}

/* ================= HERO ================= */

.hero {
    position: relative;
    background: url("imag/ttttt.jpeg") center/cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
}

.hero-content {
    position: relative;
    max-width: 1300px;
    margin: auto;
    padding: 60px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3rem;
    color: #b30000;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #111;
}

.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background: #b30000;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #fff;
    color: #b30000;
}

.hero-image img {
    max-width: 500px;
    width: 100%;
}

/* ================= BENEFITS ================= */

.benefits {
    padding: 70px 30px;
    background: #000;
    text-align: center;
}

.benefits h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.benefit-items {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.benefit-item {
    background: #111;
    padding: 30px;
    border-radius: 10px;
    flex: 1;
}

.benefit-item i {
    font-size: 3rem;
    color: #b30000;
    margin-bottom: 20px;
}

.benefit-item h3 {
    margin-bottom: 15px;
}

.benefit-item p {
    color: #ccc;
}

/* ================= FOOTER ================= */

.footer {
    background: #111;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.3rem;
    }

    .benefit-items {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .contact-links {
        justify-content: center;
    }
}