* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Manrope", sans-serif;
}

body {
background: #070d1a;
color: #eaeef7;
line-height: 1.6;
}


/* CONTAINER */
.container {
width: 90%;
max-width: 1200px;
margin: auto;
}

/* ================= HEADER ================= */
.site-header {
background: #0b1324;
padding: 15px 0;
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-weight: 800;
color: #f5b942;
letter-spacing: 1px;
}

/* NAV */
.main-nav {
display: flex;
gap: 25px;
}

.main-nav a {
color: #cfd6e6;
text-decoration: none;
font-size: 14px;
transition: 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
color: #f5b942;
}

/* ===== HAMBURGER ===== */
.hamburger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
}

.hamburger span {
width: 25px;
height: 2px;
background: #fff;
}

.hamburger.active span:nth-child(1){
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
    opacity: 0;
}

.hamburger.active span:nth-child(3){
    transform: translateY(-9px) rotate(-45deg);
}


/* =========================
HERO SECTION
========================= */

.blog-hero {
background: linear-gradient(135deg, #2563eb, #1e40af);
color: #fff;
padding: 70px 0;
text-align: center;
}

.blog-hero h1 {
font-size: 42px;
margin-bottom: 10px;
}

.blog-hero p {
max-width: 600px;
margin: auto;
font-size: 16px;
opacity: 0.9;
}

/* =========================
MAIN CONTENT CARD
========================= */

.post-page {
padding: 60px 0;
}

.policy-card {
background: #ffffff;
padding: 40px;
border-radius: 14px;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.policy-card h2 {
margin-top: 30px;
margin-bottom: 10px;
color: #0f172a;
font-size: 20px;
border-left: 4px solid #2563eb;
padding-left: 10px;
}

.policy-card p {
margin-bottom: 15px;
color: #475569;
font-size: 15px;
}

.policy-card ul {
margin-left: 20px;
margin-bottom: 15px;
}

.policy-card ul li {
margin-bottom: 8px;
color: #475569;
font-size: 15px;
}

.updated {
font-size: 13px;
color: #94a3b8;
margin-bottom: 20px;
}

/* LINKS */

.policy-card a {
color: #2563eb;
text-decoration: none;
}

.policy-card a:hover {
text-decoration: underline;
}

/* =========================
FOOTER
========================= */
.site-footer{
   margin-top: 50px;
    background:#020d18;
    border-top:1px solid rgba(243,177,59,.15);
    padding-top:60px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
}

.footer-grid h4{
    color:#f3b13b;
    margin-bottom:20px;
}

.footer-grid p,
.footer-grid li{
    color:#b8c4d1;
}

.footer-grid ul{
    list-style:none;
}

.footer-grid ul li{
    margin-bottom:10px;
}

.footer-grid ul li a{
    color:#b8c4d1;
    text-decoration:none;
    transition:.3s;
}

.footer-grid ul li a:hover{
    color:#f3b13b;
}

.copyright{
    text-align:center;
    padding:25px;
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,.05);
    color:#8b9ab0;
}

/* =========================
RESPONSIVE DESIGN
========================= */

@media (max-width: 768px) {


  .main-nav{
   position:absolute;
   top:75px;
  left:0;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0;
   background: #0b1324;
  overflow:hidden;
  max-height:0;
  opacity:0;
  visibility:hidden;
  transition:
   max-height .45s ease,
    opacity .35s ease,
  visibility .35s ease;
    box-shadow:0 12px 30px rgba(0,0,0,.2);
   border-radius:0 0 20px 20px;
    }

    .main-nav.active{
        max-height:500px;
        opacity:1;
        visibility:visible;
    }

    .main-nav a{
        color:#fff;
        width:100%;
        text-align:center;
        padding:18px;
        font-size:17px;
        font-weight:600;
        transition:.5s;
    }

    .main-nav a:hover{
        padding-left:30px;
    }

.hamburger {
    display: flex;
}

.blog-hero h1 {
    font-size: 32px;
}

.policy-card {
    padding: 25px;
}

.footer-grid {
    grid-template-columns: 1fr;

}
}