/* ===========================
   Google Font
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@600;700&display=swap');

/* ===========================
   Reset
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f5f7fb;
    color:#1f2937;
    line-height:1.7;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

ul{
    padding-left:20px;
}

/* ===========================
   Container
=========================== */

.container{
    width:90%;
    max-width:1100px;
    margin:auto;
}

/* ===========================
   Header
=========================== */

header{
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:100;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.nav{
    height:75px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:42px;
    height:42px;
}

.logo span{
    font-size:22px;
    font-weight:700;
    font-family:'Poppins',sans-serif;
    color:#2563eb;
}

nav{
    display:flex;
    gap:28px;
}

nav a{
    font-weight:600;
    transition:.25s;
}

nav a:hover,
nav a.active{
    color:#2563eb;
}

/* ===========================
   Hero
=========================== */

.hero{

    padding:100px 20px;

    text-align:center;

    background:linear-gradient(135deg,#2563eb,#3b82f6,#60a5fa);

    color:white;

}

.hero h1{

    font-size:52px;

    margin-bottom:20px;

    font-family:'Poppins',sans-serif;

}

.hero p{

    max-width:720px;

    margin:auto;

    font-size:19px;

    opacity:.95;

}

.buttons{

    margin-top:35px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn{

    background:white;

    color:#2563eb;

    padding:14px 30px;

    border-radius:12px;

    font-weight:700;

    transition:.3s;

}

.btn:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(0,0,0,.18);

}

.btn-outline{

    background:transparent;

    color:white;

    border:2px solid white;

}

/* ===========================
   Sections
=========================== */

section{

    padding:70px 0;

}

.section-title{

    text-align:center;

    font-size:34px;

    margin-bottom:45px;

    font-family:'Poppins',sans-serif;

}

/* ===========================
   Cards
=========================== */

.grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(270px,1fr));

    gap:25px;

}

.card{

    background:white;

    border-radius:18px;

    padding:28px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.card h3{

    margin-bottom:14px;

    color:#2563eb;

    font-size:22px;

}

.card p{

    color:#555;

}

/* ===========================
   About
=========================== */

.about{

    background:white;

}

.about p{

    max-width:900px;

    margin:18px auto;

    text-align:center;

    font-size:17px;

}

/* ===========================
   Legal Pages
=========================== */

.legal-page{

    padding:60px 0;

}

.legal-page h1{

    text-align:center;

    margin-bottom:12px;

    font-size:42px;

    color:#2563eb;

    font-family:'Poppins',sans-serif;

}

.last-updated{

    text-align:center;

    color:#777;

    margin-bottom:50px;

}

.legal-page section{

    background:white;

    margin-bottom:25px;

    padding:28px;

    border-radius:16px;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.legal-page h2{

    color:#2563eb;

    margin-bottom:15px;

}

.legal-page p{

    margin-bottom:15px;

}

.legal-page li{

    margin-bottom:10px;

}

/* ===========================
   Footer
=========================== */

footer{

    background:#111827;

    color:white;

    padding:30px 20px;

    margin-top:60px;

}

footer .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.footer-links{

    display:flex;

    gap:18px;

}

.footer-links a{

    color:#ddd;

}

.footer-links a:hover{

    color:white;

}

/* ===========================
   Responsive
=========================== */

@media(max-width:768px){

.hero h1{

font-size:36px;

}

.hero p{

font-size:16px;

}

.nav{

flex-direction:column;

height:auto;

padding:18px 0;

}

nav{

margin-top:15px;

gap:18px;

flex-wrap:wrap;

justify-content:center;

}

.section-title{

font-size:28px;

}

.legal-page h1{

font-size:32px;

}

footer .container{

flex-direction:column;

text-align:center;

}

}
