/* ==========================================================
   LIFE SKILL GLOBAL LLP
   Common Policy Pages Stylesheet
   File: policy-style.css
========================================================== */

/* ==========================
   CSS Variables
========================== */

:root{

    --primary:#0E4A97;
    --primary-dark:#08346E;
    --secondary:#1F75CC;
    --accent:#F68B1F;
    --green:#49A942;

    --white:#ffffff;
    --light:#f5f8fc;
    --border:#e7edf4;

    --text:#2b2b2b;
    --text-light:#666;

    --shadow:0 10px 30px rgba(0,0,0,.08);

    --radius:16px;

    --transition:.3s ease;
}

/* ==========================
   Reset
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Inter",sans-serif;

    color:var(--text);

    background:var(--light);

    line-height:1.8;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{

    width:min(1180px,92%);
    margin:auto;
}

/* ==========================
   Typography
========================== */

h1,h2,h3,h4{

    font-family:"Poppins",sans-serif;

    color:var(--primary-dark);
}

p{

    color:var(--text-light);

    margin-bottom:16px;
}

.section-space{

    padding:80px 0;
}

/* ==========================
   Header
========================== */

.header{

    position:sticky;

    top:0;

    z-index:999;

    background:#fff;

    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:82px;
}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    font-family:"Poppins",sans-serif;

    font-weight:700;

    color:var(--primary-dark);
}

.logo img{

    width:56px;
}

nav ul{

    display:flex;

    gap:30px;
}

nav a{

    color:var(--primary-dark);

    font-weight:600;

    transition:var(--transition);

    position:relative;
}

nav a:hover,
nav a.active{

    color:var(--accent);
}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-5px;

    width:0;

    height:2px;

    background:var(--accent);

    transition:.3s;
}

nav a:hover::after,
nav a.active::after{

    width:100%;
}

/* ==========================
   Mobile Menu
========================== */

.menu-btn{

    display:none;

    flex-direction:column;

    gap:5px;

    cursor:pointer;
}

.menu-btn span{

    width:28px;

    height:3px;

    background:var(--primary);

    border-radius:50px;
}

/* ==========================
   Hero Banner
========================== */

.policy-hero{

    background:

    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    padding:80px 0;
}

.policy-hero h1{

    color:#fff;

    font-size:2.8rem;

    margin-bottom:10px;
}

.policy-hero p{

    color:rgba(255,255,255,.9);

    max-width:700px;
}

/* ==========================
   Policy Card
========================== */

.policy-wrapper{

    padding:80px 0;
}

.policy-card{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:var(--shadow);
}

.policy-card section{

    margin-bottom:50px;
}

.policy-card section:last-child{

    margin-bottom:0;
}

.policy-card h2{

    margin-bottom:18px;

    color:var(--primary);

    position:relative;

    padding-bottom:10px;
}

.policy-card h2::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:70px;

    height:4px;

    border-radius:30px;

    background:var(--accent);
}

.policy-card h3{

    margin-top:30px;

    margin-bottom:15px;

    color:var(--secondary);
}

.policy-card ul{

    margin-top:15px;

    margin-left:20px;

    list-style:disc;
}

.policy-card li{

    margin-bottom:10px;

    color:var(--text-light);
}

/* ==========================
   Information Box
========================== */

.info-box{

    background:#eef6ff;

    border-left:5px solid var(--secondary);

    padding:22px;

    border-radius:12px;

    margin:25px 0;
}

/* ==========================
   Highlight Box
========================== */

.highlight{

    background:#fff7ec;

    border-left:5px solid var(--accent);

    padding:22px;

    border-radius:12px;

    margin:25px 0;
}

/* ==========================
   Buttons
========================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border-radius:40px;

    background:var(--accent);

    color:#fff;

    font-weight:600;

    transition:var(--transition);
}

.btn:hover{

    background:#d97507;

    transform:translateY(-2px);
}

/* ==========================
   Footer
========================== */

footer{

    background:var(--primary-dark);

    color:#fff;

    padding:60px 0 25px;
}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:40px;
}

.footer-logo{

    width:80px;

    margin-bottom:15px;
}

footer h3,
footer h4{

    color:#fff;

    margin-bottom:18px;
}

footer p{

    color:rgba(255,255,255,.82);
}

footer ul li{

    margin-bottom:12px;
}

footer ul li a{

    color:rgba(255,255,255,.82);

    transition:.3s;
}

footer ul li a:hover{

    color:var(--accent);
}

.copyright{

    text-align:center;

    margin-top:45px;

    padding-top:20px;

    border-top:1px solid rgba(255,255,255,.15);

    color:rgba(255,255,255,.7);

    font-size:.95rem;
}

/* ==========================
   Responsive
========================== */

@media(max-width:900px){

    nav{

        display:none;

        position:absolute;

        top:82px;

        left:0;

        width:100%;

        background:#fff;

        box-shadow:0 10px 25px rgba(0,0,0,.08);
    }

    nav.active{

        display:block;
    }

    nav ul{

        flex-direction:column;

        gap:0;
    }

    nav li{

        border-bottom:1px solid var(--border);
    }

    nav a{

        display:block;

        padding:18px 20px;
    }

    .menu-btn{

        display:flex;
    }

    .footer-grid{

        grid-template-columns:1fr;

        text-align:center;
    }

    .footer-logo{

        margin:auto auto 15px;
    }

}

@media(max-width:768px){

    .policy-hero{

        padding:60px 0;
    }

    .policy-hero h1{

        font-size:2.2rem;
    }

    .policy-card{

        padding:30px;
    }

}

@media(max-width:480px){

    .logo span{

        display:none;
    }

    .policy-hero h1{

        font-size:1.8rem;
    }

    .policy-card{

        padding:22px;
    }

    .container{

        width:94%;
    }

}