/* Badge and Header */
.policy-badge {
    display: inline-block;
    background: rgba(59,130,246,0.1);
    color: #3b82f6;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 40px;
}

/* Typography and Layout */
.policy-section {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #f3f4f6;
}

.policy-content h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.policy-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.policy-content h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.policy-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
    font-weight: 300;
}

/* List styling */
.policy-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.policy-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #4b5563;
    font-weight: 300;
}

.policy-content ul li::before {
    content: "\f2e5"; /* remixicon check-line */
    font-family: 'remixicon';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* Info Box */
.policy-info-box {
    background: #f9fafb;
    border-left: 4px solid #3b82f6;
    padding: 24px 30px;
    border-radius: 0 12px 12px 0;
    margin: 30px 0;
}

/* Scroll Snap/Smoothness */
html {
    scroll-behavior: smooth;
}