:root {
    --coeb-blue: #004a99;
    --coeb-dark-blue: #002d5a;
    --coeb-light-blue: #f0f4f8;
    --coeb-accent: #007bff;
    --text-main: #333333;
    --text-muted: #666666;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--coeb-light-blue);
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--coeb-dark-blue), var(--coeb-blue));
    color: white;
    padding: 100px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-banner h1 {
    font-size: 3.5rem;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Content Section */
.policy-container {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-top: -60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title {
    color: var(--coeb-dark-blue);
    border-left: 5px solid var(--coeb-blue);
    padding-left: 15px;
    margin: 40px 0 20px 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.section-title:first-child {
    margin-top: 0;
}

.policy-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-main);
}

.policy-content ul {
    list-style: none;
    padding-left: 0;
}

.policy-content ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.policy-content ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--coeb-blue);
    font-size: 1.1rem;
}

/* Branding Footer */
.branding-footer {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
    font-size: 14px;
}

.branding-footer strong {
    color: var(--coeb-dark-blue);
}

@media (max-width: 768px) {
    .policy-container {
        padding: 30px;
        margin-top: -30px;
    }

    .page-banner h1 {
        font-size: 2.2rem;
    }

    .page-banner {
        padding: 70px 0;
    }
}