.policy-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.policy-header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 3rem 5% 2.5rem;
    text-align: center;
}

.policy-header h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    line-height: 1.35;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.policy-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    font-size: 0.95rem;
    opacity: 0.95;
}

.policy-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-meta i {
    color: #a8d8ff;
}

.policy-main {
    flex: 1;
    max-width: 860px;
    margin: -1.5rem auto 0;
    padding: 0 1.5rem 3rem;
    width: 100%;
}

.policy-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.12);
    padding: 2.5rem;
}

.policy-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #34495e;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ecf0f1;
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: #2c3e50;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.policy-section h2 i {
    color: #3498db;
    font-size: 1.1rem;
}

.policy-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.policy-list {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
}

.policy-list li {
    position: relative;
    padding: 0.65rem 0 0.65rem 1.75rem;
    color: #444;
    line-height: 1.6;
    border-bottom: 1px solid #f4f6f8;
}

.policy-list li:last-child {
    border-bottom: none;
}

.policy-list li::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #e74c3c;
    font-size: 0.75rem;
}

.policy-list--measures li::before {
    content: '\f00c';
    color: #27ae60;
}

.policy-contact {
    background: linear-gradient(135deg, #f8fafc 0%, #eef4fb 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 0.5rem;
}

.policy-contact p {
    margin-bottom: 0.5rem;
}

.policy-contact a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.policy-contact a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.policy-compliance {
    background: #2c3e50;
    color: #ecf0f1;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.policy-updated {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ecf0f1;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.policy-page .navbar {
    position: sticky;
    top: 0;
    z-index: 100;
}

.policy-page .footer {
    margin-top: 0;
}

@media (max-width: 768px) {
    .policy-header {
        padding: 2rem 1.25rem 2rem;
    }

    .policy-card {
        padding: 1.5rem;
    }

    .policy-section h2 {
        font-size: 1.15rem;
    }
}
