/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Body */

body{

    font-family:Arial, Helvetica, sans-serif;

    background:#f5f5f5;

}

/* Container */

.container{

    width:1200px;

    max-width:90%;

    margin:auto;

}

/* Navbar */

nav{

    background:white;

    box-shadow:0 3px 15px rgba(0,0,0,.08);

}

.navbar{

    height:75px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* HERO */

.hero{

    padding:80px 0;

}

.hero-content{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

}

.hero-text{

    flex:1;

}

.hero-text h1{

    font-size:52px;

    color:#1f2937;

    margin-bottom:20px;

}

.hero-text p{

    font-size:18px;

    color:#666;

    line-height:32px;

    margin-bottom:35px;

}

.hero-button{

    display:flex;

    gap:15px;

}

.btn{

    text-decoration:none;

    padding:14px 30px;

    border-radius:8px;

    font-weight:bold;

    transition:.3s;

}

.btn-primary{

    background:#2563eb;

    color:white;

}

.btn-primary:hover{

    background:#1d4ed8;

}

.btn-secondary{

    border:2px solid #2563eb;

    color:#2563eb;

}

.btn-secondary:hover{

    background:#2563eb;

    color:white;

}

.hero-image{

    flex:1;

    text-align:center;

}

.hero-image img{

    max-width:100%;

}



.logo{

    font-size:30px;

    font-weight:bold;

    color:#2563eb;

}

.menu{

    display:flex;

    list-style:none;

}

.menu li{

    margin-left:35px;

}

.menu a{

    text-decoration:none;

    color:#333;

    font-weight:600;

    transition:.3s;

}

.menu a:hover{

    color:#2563eb;

}