/* Policy Pages Styles */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Inter:wght@300;400;500&display=swap');

:root {
    --bg1: #f5f5f5;
    --bg2: #ffffff;
    --accent: #c73e1d;
    --accent-soft: #ff6b4a;
    --text: #1a1a2e;
    --muted: #555566;
    --glass: rgba(0, 0, 0, 0.03);
    --border: rgba(199, 62, 29, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg1);
    color: var(--text);
    line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cinzel', serif;
    color: var(--accent);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-soft);
}

/* Header Section */
.page-header {
    background: linear-gradient(135deg, var(--bg2), var(--bg1));
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header .lead {
    color: var(--muted);
    font-size: 1.1rem;
    font-style: italic;
}

/* Card & Content */
.card {
    background: var(--bg2);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    border: 1px solid var(--border);
    margin-bottom: 60px;
    overflow: hidden;
}

.card-body {
    padding: 60px !important;
}

@media (max-width: 768px) {
    .card-body {
        padding: 30px !important;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }
}

section {
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-left: 4px solid var(--accent);
    padding-left: 15px;
}

h5 {
    font-size: 1.1rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--accent-soft);
    font-weight: 600;
}

p {
    color: var(--text);
    margin-bottom: 15px;
}

/* Scoped list styles to avoid affecting navbar */
.card-body ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.card-body li {
    margin-bottom: 8px;
    color: var(--text);
    position: relative;
    list-style: none;
    /* Custom bullet */
    padding-left: 20px;
}

.card-body li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--accent-soft);
}

/* Text Utilities */
.text-muted {
    color: var(--muted) !important;
    font-size: 0.95rem;
}

.display-4 {
    /* Helper if Bootstrap is missing */
    font-size: 3rem;
    font-weight: 700;
}

.fw-bold {
    font-weight: 700;
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    justify-content: center;
}

.col-lg-10 {
    width: 100%;
    max-width: 900px;
}