/* ===========================
   RESET
=========================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f7f9fc;
    color:#1e293b;
    line-height:1.8;
    overflow-x:hidden;
}

/* ===========================
   GLOBAL
=========================== */

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

section{
    padding:90px 0;
}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    background:#dbeafe;
    color:#2563eb;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.section-title h2{
    font-size:40px;
    margin-bottom:20px;
    color:#0f172a;
}

.section-title p{
    max-width:800px;
    margin:auto;
    color:#475569;
}

/* ===========================
   BUTTONS
=========================== */

.btn-primary,
.btn-secondary{
    display:inline-block;
    padding:15px 28px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#2563eb;
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    border:2px solid #2563eb;
    color:#2563eb;
}

.btn-secondary:hover{
    background:#2563eb;
    color:#fff;
}

/* ===========================
   HEADER
=========================== */

.header{
    position:fixed;
    top:0;
    width:100%;
    z-index:999;
    background:#ffffff;
    box-shadow:0 2px 15px rgba(0,0,0,.06);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

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

.logo{
    width:58px;
    height:58px;
    object-fit:contain;
}

.logo-text h2{
    font-size:20px;
    color:#0f172a;
}

.logo-text span{
    font-size:13px;
    color:#64748b;
}

.nav-menu ul{
    display:flex;
    align-items:center;
    gap:25px;
}

.nav-menu a{
    color:#1e293b;
    font-weight:600;
    font-size:15px;
    transition:.3s;
}

.nav-menu a:hover{
    color:#2563eb;
}

/* ===========================
   HERO
=========================== */

.hero{
    padding-top:170px;
    background:linear-gradient(to right,#eff6ff,#f8fafc);
}

.hero-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:40px;
    align-items:center;
}

.badge{
    display:inline-block;
    background:#2563eb;
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    margin-bottom:20px;
}

.hero h1{
    font-size:54px;
    line-height:1.2;
    margin-bottom:25px;
    color:#0f172a;
}

.hero p{
    color:#475569;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.hero-card{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.hero-card h3{
    margin-bottom:20px;
    font-size:28px;
}

.hero-card ul{
    margin-top:20px;
}

.hero-card li{
    margin-bottom:12px;
    color:#475569;
}

/* ===========================
   ABOUT
=========================== */

.about-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.about-card{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 8px 30px rgba(0,0,0,.05);
}

.about-card h3{
    margin-bottom:20px;
    font-size:28px;
}

.about-card p{
    margin-bottom:18px;
    color:#475569;
}

/* ===========================
   AWARENESS
=========================== */

.awareness-section{
    background:#eff6ff;
}

.awareness-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.awareness-card{
    background:#fff;
    padding:35px;
    border-radius:22px;
    box-shadow:0 8px 30px rgba(0,0,0,.05);
}

.awareness-card h3{
    margin-bottom:20px;
    font-size:24px;
}

.awareness-card p{
    color:#475569;
    margin-bottom:15px;
}

/* ===========================
   TOOLS
=========================== */

.tools-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.tool-card{
    background:#fff;
    border-radius:22px;
    padding:35px;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    border:1px solid #e2e8f0;
}

.tool-card:hover{
    transform:translateY(-6px);
}

.tool-card h3{
    color:#0f172a;
    margin-bottom:15px;
    font-size:24px;
}

.tool-card p{
    color:#64748b;
}

/* ===========================
   CONTENT
=========================== */

.content-box{
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.content-box p{
    margin-bottom:22px;
    color:#475569;
}

/* ===========================
   LEGAL
=========================== */

.legal-section{
    background:#eff6ff;
}

.legal-card{
    background:#fff;
    padding:50px;
    border-radius:25px;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
}

.legal-card h2{
    margin-bottom:20px;
    font-size:36px;
}

.legal-card p{
    color:#475569;
    margin-bottom:18px;
}

/* ===========================
   DONATION
=========================== */

.donation-card{
    background:#2563eb;
    color:#fff;
    padding:60px;
    border-radius:30px;
    text-align:center;
}

.small-badge{
    display:inline-block;
    background:rgba(255,255,255,.2);
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:20px;
}

.donation-card h2{
    font-size:42px;
    margin-bottom:20px;
}

.donation-card p{
    max-width:800px;
    margin:0 auto 20px;
}

.donation-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:25px;
    flex-wrap:wrap;
}

/* ===========================
   CONTACT
=========================== */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.contact-card{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 8px 30px rgba(0,0,0,.05);
}

.contact-card h3{
    margin-bottom:20px;
}

.contact-list li{
    margin-bottom:15px;
    color:#475569;
}

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

.footer{
    background:#0f172a;
    color:#fff;
    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer-column h3{
    margin-bottom:20px;
}

.footer-column p{
    color:#cbd5e1;
}

.footer-column ul li{
    margin-bottom:12px;
}

.footer-column a{
    color:#cbd5e1;
}

.footer-column a:hover{
    color:#fff;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    margin-top:50px;
    padding:25px 0;
}

.footer-bottom p{
    color:#cbd5e1;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px){

    .hero-grid,
    .about-grid,
    .awareness-grid,
    .tools-grid,
    .contact-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:42px;
    }

    .section-title h2{
        font-size:32px;
    }

    .nav-menu{
        display:none;
    }

}

@media(max-width:768px){

    section{
        padding:70px 0;
    }

    .hero{
        padding-top:150px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero-card,
    .about-card,
    .awareness-card,
    .tool-card,
    .content-box,
    .legal-card,
    .contact-card{
        padding:28px;
    }

    .donation-card{
        padding:40px 25px;
    }

    .section-title h2{
        font-size:28px;
    }
}
/* ==========================
   LOGO SIZE FIX
========================== */

.logo{
    width:42px !important;
    height:42px !important;
    border-radius:12px !important;
    object-fit:contain !important;
    display:block;
    flex-shrink:0;
}

/* MOBILE */
@media(max-width:768px){

    .logo{
        width:50px !important;
        height:50px !important;
        border-radius:12px !important;
        object-fit:contain !important;
    }

}