*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f5f5f5;
    color:#222;
}

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

header{
    background:#c62828;
    color:white;
    text-align:center;
    padding:100px 20px;
}

header h1{
    font-size:3rem;
}

header p{
    margin-top:15px;
}

.hero-buttons{
    margin-top:30px;
}

.btn{
    background:white;
    color:#c62828;
    padding:12px 24px;
    text-decoration:none;
    border-radius:8px;
    margin-right:10px;
}

.btn-outline{
    border:2px solid white;
    color:white;
    padding:12px 24px;
    text-decoration:none;
    border-radius:8px;
}

.about{
    padding:80px 0;
    text-align:center;
}

.about p{
    margin-top:20px;
    line-height:1.8;
}

.stats{
    padding:50px 0;
}

.stats .container{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    max-width:1200px;
    margin:auto;
    padding:20px;
}

.logo{
    font-size:28px;
    font-weight:bold;
}

.menu{
    display:flex;
    gap:20px;
}

.menu a{
    color:white;
    text-decoration:none;
    font-weight:600;
}

.hero-content{
    text-align:center;
    padding:70px 20px 100px;
}

.card{
    background:white;
    width:220px;
    padding:30px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.features{
    padding:80px 0;
    text-align:center;
}

.feature-grid{
    display:flex;
    gap:25px;
    justify-content:center;
    flex-wrap:wrap;
    margin-top:40px;
}

.feature-card{
    background:white;
    width:300px;
    padding:30px;
    border-radius:14px;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.feature-card h3{
    margin-bottom:15px;
}

.feature-card p{
    line-height:1.7;
    color:#555;
}

.latest{
    padding:70px 0;
    text-align:center;
}

.latest-subtitle{
    color:#666;
    margin-top:10px;
}

.latest-grid{
    display:flex;
    gap:25px;
    justify-content:center;
    flex-wrap:wrap;
    margin-top:35px;
}

.latest-card{
    background:white;
    width:300px;
    padding:25px;
    border-radius:14px;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    text-align:left;
}

.latest-card .badge{
    display:inline-block;
    padding:5px 10px;
    border-radius:20px;
    font-size:14px;
    margin-bottom:10px;
    background:#eee;
}

.latest-card h3{
    margin-bottom:10px;
}

.latest-card p{
    color:#555;
    line-height:1.6;
}

footer{
    text-align:center;
    padding:30px;
}

/* MOBILE */

@media (max-width: 768px){

    .navbar{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

    .menu{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .logo{
        font-size:40px;
    }

    header{
        padding:50px 20px;
    }

    header h1{
        font-size:3rem;
    }

    .hero-buttons{
        display:flex;
        flex-direction:column;
        gap:15px;
        align-items:center;
    }

    .btn,
    .btn-outline{
        width:250px;
        text-align:center;
        margin:0;
    }

    .stats .container,
    .feature-grid,
    .latest-grid{
        flex-direction:column;
        align-items:center;
    }

    .card,
    .feature-card,
    .latest-card{
        width:100%;
        max-width:350px;
    }

}
