/* =========================
   Global Styles
========================= */

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

:root {
    --primary: #0c2340;
    --secondary: #f58220;
    --text: #333333;
    --light-bg: #f5f7fa;
    --white: #ffffff;
    --border: #e5e7eb;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: var(--light-bg);
    color: var(--text);
    line-height: 1.8;
}

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

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

.policy-hero {
    background: linear-gradient(
        135deg,
        var(--primary),
        #153c66
    );
    color: var(--white);
    text-align: center;
    padding: 120px 20px;
}

.policy-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.policy-hero p {
    max-width: 750px;
    margin: auto;
    font-size: 1.1rem;
    opacity: 0.95;
}

/* =========================
   Content Section
========================= */

.policy-content {
    padding: 80px 0;
}

.policy-card {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   Typography
========================= */

.policy-card h2 {
    color: var(--primary);
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 1.8rem;
    position: relative;
    padding-left: 18px;
}

.policy-card h2:first-child {
    margin-top: 0;
}

.policy-card h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 28px;
    background: var(--secondary);
    border-radius: 10px;
}

.policy-card h3 {
    color: #1f4f86;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.policy-card p {
    margin-bottom: 15px;
    color: #555;
}

.policy-card ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.policy-card li {
    margin-bottom: 8px;
    color: #555;
}

/* =========================
   Contact Box
========================= */

.contact-box {
    background: #f8fafc;
    border-left: 5px solid var(--secondary);
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

/* =========================
   Links
========================= */

.policy-card a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.policy-card a:hover {
    text-decoration: underline;
}

/* =========================
   Last Updated
========================= */

.last-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 0.95rem;
    color: #777;
}

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

@media (max-width: 992px) {

    .policy-hero h1 {
        font-size: 2.5rem;
    }

    .policy-card {
        padding: 35px;
    }
}

@media (max-width: 768px) {

    .policy-hero {
        padding: 80px 20px;
    }

    .policy-hero h1 {
        font-size: 2rem;
    }

    .policy-hero p {
        font-size: 1rem;
    }

    .policy-card {
        padding: 25px;
    }

    .policy-card h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {

    .container {
        width: 95%;
    }

    .policy-card {
        padding: 20px;
    }

    .policy-hero h1 {
        font-size: 1.8rem;
    }
}