* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* ================= GENERAL ================= */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section {
    padding: 70px 0;
}

.gray {
    background: #f4f4f4;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

/* ================= BUTTON ================= */

.btn-primary {
    background: #ff8c00;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e07b00;
}

/* ================= HEADER ================= */

.header {
    background: #111;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 45px;
}

.nav a {
    color: #fff;
    margin: 0 12px;
    text-decoration: none;
    font-weight: 500;
}

.nav a:hover {
    color: #ff8c00;
}

/* ================= HERO ================= */

.hero {
    height: 100vh;
    background: url("../img/FT.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 25px;
}

/* ================= PRODUCTS ================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 5px 12px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    border-radius: 8px;
    height: 180px;
    object-fit: cover;
}

.product-card h3 {
    margin: 15px 0 10px;
}

/* ================= BENEFITS ================= */

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

/* ================= CONTACT ================= */

.contact-box {
    text-align: center;
    line-height: 2;
}

/* ================= FOOTER ================= */

.footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}
