*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Inter",sans-serif;
}

body{
    min-height:100vh;

    background:#f5f5f7;

    display:flex;
    flex-direction:column;
  
}
.main-content{

    flex:1;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:20px;
}

.container{
    max-width:700px;
    width:100%;

    text-align:center;

    background:white;

    padding:60px 40px;

    border-radius:24px;

    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.badge{
    display:inline-block;

    background:#fee2e2;
    color:#dc2626;

    padding:10px 18px;

    border-radius:999px;

    font-size:14px;
    font-weight:700;

    margin-bottom:25px;
}

h1{
    font-size:48px;
    font-weight:800;

    color:#111827;

    margin-bottom:20px;
}

p{
    color:#6b7280;

    font-size:18px;

    line-height:1.8;

    max-width:550px;
    margin:auto;
}

.buttons{
    margin-top:40px;

    display:flex;
    justify-content:center;
    gap:15px;

    flex-wrap:wrap;
}

.primary-btn{
    text-decoration:none;

    background:#ef4444;
    color:white;

    padding:14px 26px;

    border-radius:12px;

    font-weight:700;

    transition:.3s;
}

.primary-btn:hover{
    background:#dc2626;
}

.secondary-btn{
    text-decoration:none;

    border:1px solid #d1d5db;

    color:#111827;

    padding:14px 26px;

    border-radius:12px;

    font-weight:700;

    transition:.3s;
}

.secondary-btn:hover{
    background:#f3f4f6;
}

@media(max-width:768px){

    .container{
        padding:40px 25px;
    }

    h1{
        font-size:34px;
    }

    p{
        font-size:16px;
    }

}
/* =========================
   FOOTER
========================= */

.footer{

    background:#111827;

    color:#fff;

    margin-top:80px;
}

.footer-container{

    max-width:1300px;

    margin:auto;

    padding:60px 24px;

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:40px;
}

.footer-brand img{
    height:81px;

    background:white;

    padding:5px;

    border-radius:5px;
}
.footer-brand p{

    color:#9ca3af;

    line-height:1.8;

    max-width:320px;
}

.footer-column h3{

    margin-bottom:20px;

    font-size:18px;

    font-weight:700;
}

.footer-column{
    display:flex;
    flex-direction:column;
    position:relative;
    padding-left:30px;
}

.footer-column a{

    color:#9ca3af;

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s;
}

.footer-column a:hover{

    color:#ef4444;
}

.footer-bottom{

    border-top:1px solid #374151;

    text-align:center;

    padding:20px;
}

.footer-bottom p{

    color:#9ca3af;

    font-size:14px;
}

.footer-column::before{

    content:"";

    position:absolute;

    left:0;
    top:10px;

    width:1px;
    height:80%;

    background:rgba(255,255,255,0.12);
}
@media (max-width: 992px){

    .footer-container{

        grid-template-columns:
        repeat(2,1fr);
    }

}
@media (max-width: 768px){

    .footer-container{

        grid-template-columns:1fr;

        text-align:center;
    }

    .footer-brand p{

        max-width:100%;

        margin:auto;
    }

   .footer-brand img{
    height:50px;

    background:white;

    padding:8px;

    border-radius:10px;
}

}

@media (max-width:768px){

    .footer-column::before{
        display:none;
    }

    .footer-column{
        padding-left:0;
    }

}