/* style.css */

/* Reset & Fonts */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

body{
    background:#f8fafc;
    color:#1f2937;
    line-height:1.8;
}

/* Header */
header{
    background:#0f172a;
    color:white;
    padding:18px 10%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

header h1{
    font-size:20px;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    font-size:14px;
}

nav a:hover{
    opacity:0.7;
}

/* Hero Section */
.hero{
    background:linear-gradient(135deg,#1e3a8a,#2563eb);
    color:white;
    padding:70px 10%;
    text-align:center;
}

.hero h2{
    font-size:34px;
}

/* Buttons */
.btn{
    display:inline-block;
    padding:12px 28px;
    background:white;
    color:#1e3a8a;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}

.btn:hover{
    background:#e2e8f0;
}

/* Content Sections */
.content{
    padding:60px 10%;
    max-width:900px;
    margin:auto;
}

.content h3{
    margin-top:40px;
    margin-bottom:15px;
    color:#1e3a8a;
}

.content p{
    margin-bottom:15px;
}

.highlight{
    background:#e0f2fe;
    padding:20px;
    border-left:5px solid #2563eb;
    margin:25px 0;
}

ul{
    margin-left:20px;
    margin-bottom:20px;
}

a{
    color:#2563eb;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

/* Disclaimer */
.disclaimer{
    background:#fef3c7;
    padding:30px 10%;
    font-size:14px;
}

/* Footer */
footer{
    background:#0f172a;
    color:white;
    text-align:center;
    padding:25px;
    font-size:14px;
}

/* Responsive */
@media(max-width:768px){
    .hero h2{
        font-size:26px;
    }
}