*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#fff;
    color:#222;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.header{
    background:#ffffff;
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    color:#ff5757;
    font-size:28px;
}

nav a{
    margin-left:20px;
    text-decoration:none;
    color:#333;
    font-weight:bold;
    transition:0.3s;
}

nav a:hover{
    color:#ff5757;
}

.hero{
    height:100vh;
    background:url('assets/hero.jpg') center/cover;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    text-align:center;
    padding:20px;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
}

.hero-content{
    position:relative;
    z-index:2;
    color:white;
    max-width:800px;
}

.hero-content h2{
    font-size:56px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    margin-bottom:40px;
    line-height:1.5;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    padding:15px 30px;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.primary{
    background:#ff5757;
    color:white;
}

.primary:hover{
    background:#ff4343;
}

.secondary{
    background:white;
    color:#222;
}

.secondary:hover{
    background:#e5e5e5;
}

.features{
    padding:100px 0;
    background:#f5f5f5;
}

.features .container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.feature-card{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    text-align:center;
}

.feature-card h3{
    margin-bottom:20px;
    color:#ff5757;
}

.cta{
    padding:100px 20px;
    text-align:center;
}

.cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta p{
    margin-bottom:30px;
    font-size:20px;
}

.footer{
    background:#111;
    color:white;
    text-align:center;
    padding:40px 20px;
}

.socials{
    margin-top:15px;
}

.socials a{
    color:#ff5757;
    margin:0 10px;
    text-decoration:none;
}

@media(max-width:768px){

    .hero-content h2{
        font-size:38px;
    }

    .hero-content p{
        font-size:18px;
    }

    nav{
        display:none;
    }

}