* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: #ffffff;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
header {
    background: #ffffff;
    border-bottom: 2px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    height: 100px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #444;
    font-weight: 600;
}

nav a:hover {
    color: #c60000;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #c60000, #7a0000);
    color: #fff;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 48px;
    letter-spacing: 2px;
}

.hero p {
    margin-top: 20px;
    font-size: 18px;
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.light {
    background: #f7f7f7;
}

.dark {
    background: #2b2b2b;
    color: #fff;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-box {
    background: #fff;
    color: #333;
    padding: 30px;
    border-left: 5px solid #c60000;
    transition: transform 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
}

/* STATS */
.stats-flex {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat span {
    font-size: 48px;
    color: #c60000;
    font-weight: bold;
}

/* CONTACT */
.contact-info {
    margin-top: 30px;
    line-height: 1.8;
}

/* FOOTER */
footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 20px;
}
