:root {
    --main: #8c181e;
    --text: #1a1a1a;
    --muted: #666;
    --bg: #f6f6f6;
}

body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    color: var(--text);
    scroll-behavior: smooth;
}

/* 1000px Layout */
.container {
    max-width: 1000px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */
header {
	display: flex;
	    justify-content: center;
	    align-items: center;
	
    position: sticky;
    top: 0;
    background: var(--main);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    height: 80px;
		
}

/* MENU */
nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    position: relative;
}

nav a:hover {
    color: #fff;
}

/* ACTIVE MENU (hell + underline) */
nav a.active {
    color: #fff;
}

nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: white;
}

/* MOBILE */
.menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    nav {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: var(--main);
        max-height: 0;
        overflow: hidden;
        transition: 0.4s;
    }

    nav.open {
        max-height: 400px;
    }

    nav ul {
        flex-direction: column;
        padding: 10px;
    }

    .menu-toggle {
        display: block;
    }
}

/* SECTIONS */
.section {
    padding: 100px 0;
    text-align: center;
}

.light {
    background: var(--bg);
}

/* HERO */
.hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero p {
    color: var(--muted);
}

/* CARDS */
.cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 14px;
    width: 280px;
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.icon {
    font-size: 30px;
    color: var(--main);
    margin-bottom: 10px;
}

/* ABOUT CENTER */
.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.about-logo {
    height: 80px;
	
	
}

/* FOOTER */
footer {
    background: var(--main);
    color: white;
    text-align: center;
    padding: 25px;
}

/* ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay1 { transition-delay: 0.2s; }
.delay2 { transition-delay: 0.4s; }