body{
    font-family:Arial;
    margin:0;
    background:#f5f5f5;
}

/* NAVBAR */

.navbar{
    background:black;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
}

.logo{
    font-size:28px;
    font-weight:bold;
}

.menu a{
    color:white;
    text-decoration:none;
    margin-left:20px;
}

/* HERO */

.hero{
    background:linear-gradient(to right,#1e3a8a,#2563eb);
    color:white;
    text-align:center;
    padding:100px 20px;
}

.hero h2{
    font-size:55px;
    margin-bottom:20px;
    color:white;
}

.hero p{
    font-size:22px;
    margin-bottom:30px;
}

/* BUTTON */

button{
    background:#f97316;
    color:white;
    border:none;
    padding:15px 30px;
    font-size:18px;
    border-radius:5px;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    background:#ea580c;
}

/* SECTION */

section{
    padding:60px 20px;
}

/* ABOUT */

.about-section{
    text-align:center;
    background:white;
}

.about-section p{
    width:70%;
    margin:auto;
    line-height:1.8;
    font-size:18px;
}

/* MODULES */

.modules h2{
    text-align:center;
    margin-bottom:40px;
}

.module-box{
    background:white;
    padding:25px;
    margin-bottom:20px;
    border-radius:10px;
    box-shadow:0px 0px 10px rgba(0,0,0,0.1);
    transition:0.3s;
}

.module-box:hover{
    transform:translateY(-5px);
}

.module-box h3{
    color:#1e3a8a;
}

/* BENEFITS */

.benefits-section{
    background:white;
    text-align:center;
}

.benefit-box{
    background:#1e3a8a;
    color:white;
    padding:25px;
    margin:20px auto;
    width:60%;
    border-radius:10px;
    transition:0.3s;
}

.benefit-box:hover{
    background:#2563eb;
    transform:scale(1.03);
}

/* CONTACT */

.contact-section{
    text-align:center;
}

form{
    width:60%;
    margin:auto;
}

input,
textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ccc;
    border-radius:5px;
    font-size:16px;
}

textarea{
    height:120px;
}

/* FOOTER */

footer{
    background:black;
    color:white;
    text-align:center;
    padding:30px;
}

/* MOBILE RESPONSIVE */

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

    /* NAVBAR */

    .navbar{
        flex-direction:column;
        padding:20px;
        text-align:center;
    }

    .menu{
        margin-top:15px;
    }

    .menu a{
        display:block;
        margin:10px 0;
    }

    /* HERO */

    .hero{
        padding:70px 20px;
    }

    .hero h2{
        font-size:35px;
    }

    .hero p{
        font-size:18px;
    }

    button{
        width:100%;
    }

    /* ABOUT */

    .about-section p{
        width:100%;
        font-size:16px;
    }

    /* MODULES */

    .module-box{
        padding:20px;
    }

    .module-box h3{
        font-size:20px;
    }

    /* BENEFITS */

    .benefit-box{
        width:100%;
        box-sizing:border-box;
    }

    /* CONTACT */

    form{
        width:100%;
    }

    input,
    textarea{
        width:100%;
        box-sizing:border-box;
    }

    /* GENERAL */

    section{
        padding:40px 15px;
    }

}