
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    background:#fff;
    line-height:1.7;
}

.container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* HEADER */

header{
    background:#070D27;
    padding:18px 0;
    position:sticky;
    top:0;
    z-index:999;
}

.header-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.header-logo img{
    max-height:60px;
}

.header-title{
    color:#fff;
    font-size:18px;
    font-weight:600;
    text-align:center;
    flex:1;
}

.header-btn{
    background:#F8B334;
    color:#070D27;
    text-decoration:none;
    font-weight:700;
    padding:14px 24px;
    border-radius:6px;
    transition:.3s;
    white-space:nowrap;
}

.header-btn:hover{
    background:#e0a12a;
}

/* CONTENT */

main{
    padding:50px 0;
}

.article{
    max-width:900px;
    margin:auto;
}

.article h1{
    color:#070D27;
    font-size:42px;
    line-height:1.2;
    margin-bottom:25px;
}

.article h2{
    color:#070D27;
    font-size:32px;
    margin:40px 0 20px;
}

.article h3{
    color:#070D27;
    font-size:26px;
    margin:30px 0 15px;
}

.article p{
    font-size:18px;
    margin-bottom:20px;
}

.article a{
    color:#1f5eff;
    text-decoration:underline;
    font-weight:600;
}

/* FORM */

.lead-section{
    margin-top:60px;
    padding:50px;
    background:#f8f9fc;
    border-radius:12px;
}

.lead-section h2{
    text-align:center;
    margin-bottom:25px;
}

.form-group{
    margin-bottom:20px;
}

.form-group input{
    width:100%;
    height:55px;
    border:1px solid #d8d8d8;
    border-radius:6px;
    padding:0 15px;
    font-family:'Poppins',sans-serif;
    font-size:16px;
}

.submit-btn{
    width:100%;
    height:55px;
    border:none;
    border-radius:6px;
    background:#F8B334;
    color:#070D27;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.submit-btn:hover{
    background:#e0a12a;
}

/* FOOTER */

footer{
    background:#070D27;
    color:#fff;
    padding:50px 0;
}

.footer-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.footer-left img{
    max-height:60px;
    margin-bottom:10px;
}

.footer-copy{
    font-size:14px;
}

.footer-links{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
}

.footer-links a:hover{
    text-decoration:underline;
}

@media(max-width:768px){

    .header-wrapper{
        flex-direction:column;
    }

    .header-title{
        order:3;
        font-size:16px;
    }

    .article h1{
        font-size:32px;
    }

    .article h2{
        font-size:26px;
    }

    .article h3{
        font-size:22px;
    }

    .article p{
        font-size:16px;
    }

    .lead-section{
        padding:25px;
    }

    .footer-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .footer-links{
        justify-content:center;
    }
}
.popup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

ul{
    padding-left: 20px;
}
@media (max-width: 768px) {
    .header-wrapper{
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }

    .header-logo{
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .header-logo img{
        max-height: 45px;
    }

    .header-title{
       display: none;
    }

    .header-btn{
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }
}