:root {
    /* Backgrounds */
    --bg-page: #f9fafb;
    --bg-header-start: #0f4c47;
    --bg-header-end: #0b3f3b;
    --bg-card: #ffffff;

    /* Text */
    --text-primary: #111827;
    --text-secondary: #374151;
    --text-heading: #0f766e;
    --text-link: #0f766e;
    --text-link-hover: #0b5f59;

    /* Accents */
    --accent-main: #14b8a6;
    --accent-soft: #0f766e;

    /* Borders & Shadows */
    --border-card: #e5e7eb;
    --shadow-header: rgba(0, 0, 0, 0.15);
    --shadow-card: rgba(0, 0, 0, 0.08);

    /* Fonts */
    --font-body: "Source Sans 3", "Segoe UI", Roboto, Arial, sans-serif;
    --font-heading: "Poppins", "Segoe UI", Roboto, Arial, sans-serif;
}

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

/* Base Styling */
body {
    font-family: var(--font-body);
    background: linear-gradient(120deg, var(--bg-page), var(--bg-page));
    color: var(--text-primary);
    line-height: 1.75;
}

/* Header */
.site-header {
    background: linear-gradient(
        135deg,
        var(--bg-header-start),
        var(--bg-header-end)
    );
    padding: 70px 20px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 10px 30px var(--shadow-header);
}

.site-header h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 0.6px;
}

/* Page Container */
.container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Content Card */
.policy-card {
    background: var(--bg-card);
    border-radius: 18px;
    padding: 65px;
    box-shadow: 0 25px 45px var(--shadow-card);
    border: 1px solid var(--border-card);
}

/* Section Headings */
.policy-card h2 {
    font-family: var(--font-heading);
    font-size: 25px;
    margin: 45px 0 18px;
    color: var(--text-heading);
    position: relative;
    padding-bottom: 8px;
    font-weight: 600;
}

.policy-card h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--accent-main);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

/* Paragraphs */
.text {
    font-family: var(--font-body);
    margin-top: 18px;
    font-size: 17px;
    color: var(--text-secondary);
    text-align: justify;
}

/* Lists */
ul {
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
}

ul li {
    font-family: var(--font-body);
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 17px;
    color: var(--text-secondary);
}

ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-soft);
    font-size: 22px;
    line-height: 1;
}

/* Links */
a {
    color: var(--text-link);
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
    color: var(--text-link-hover);
}

/* Footer Spacing */
.last {
    margin-bottom: 35px;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header h1 {
        font-size: 32px;
    }

    .policy-card {
        padding: 40px 30px;
    }

    .policy-card h2 {
        font-size: 22px;
    }

    .text,
    ul li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 50px 15px;
    }

    .policy-card {
        padding: 30px 22px;
    }
}