/* ==========================================================
   rEPAct Platform v1
   Main Stylesheet
==========================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Arial,Helvetica,sans-serif;

    background:#eef3f8;

    color:#1f2937;

}

/*==========================================================*/
/* HEADER */
/*==========================================================*/

.site-header{

    background:#172b4d;

    color:white;

    padding:18px 40px;

    box-shadow:0 3px 10px rgba(0,0,0,.15);

}

.header-inner{

    max-width:1200px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.brand{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:26px;

    font-weight:700;

}

.logo{

    color:white;

}

.divider{

    opacity:.45;

}

.academy{

    font-size:20px;

    font-weight:400;

}

/*==========================================================*/
/* NAVIGATION */
/*==========================================================*/

nav{

    display:flex;

    gap:28px;

}

nav a{

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.2s;

}

nav a:hover{

    color:#8fd0ff;

}

/*==========================================================*/
/* MAIN CONTENT */
/*==========================================================*/

main{

    min-height:70vh;

}

.container{

    max-width:900px;

    margin:60px auto;

    background:white;

    padding:45px;

    border-radius:14px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

h1{

    color:#0b5cab;

    margin-bottom:20px;

}

h2{

    margin-top:25px;

    margin-bottom:15px;

}

p{

    line-height:1.7;

    margin-bottom:15px;

}

hr{

    margin:28px 0;

    border:none;

    border-top:1px solid #d7d7d7;

}

/*==========================================================*/
/* FOOTER */
/*==========================================================*/

.site-footer{

    margin-top:60px;

    background:#172b4d;

    color:white;

    padding:30px 40px;

}

.footer-inner{

    max-width:1200px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:40px;

}

.footer-right{

    text-align:right;

}

.footer-right strong{

    color:#8fd0ff;

}

/*==========================================================*/
/* RESPONSIVE */
/*==========================================================*/

@media (max-width:900px){

.header-inner{

    flex-direction:column;

    gap:18px;

}

nav{

    flex-wrap:wrap;

    justify-content:center;

}

.footer-inner{

    flex-direction:column;

}

.footer-right{

    text-align:left;

}

}