﻿/* Policy Hero */
.policy-hero {
    background: linear-gradient(135deg, #0a5f59 0%, #084a45 100%);
    padding: 170px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="policy-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23policy-pattern)"/></svg>');
    opacity: 0.3;
}

.policy-hero-content {
    position: relative;
    z-index: 2;
}

.policy-hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(228, 165, 32, 0.2);
    border: 2px solid rgba(228, 165, 32, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #e4a520;
}

.policy-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.policy-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 15px;
}

.policy-hero .last-updated {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Policy Content */
.policy-content {
    padding: 80px 0;
    background: #f8fffe;
}

.policy-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(10, 95, 89, 0.08);
    border: 1px solid rgba(10, 95, 89, 0.05);
}

.policy-card h2 {
    color: #0a5f59;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(10, 95, 89, 0.1);
}

.policy-card h2:first-child {
    margin-top: 0;
}

.policy-card h3 {
    color: #0a5f59;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 25px 0 12px;
}

.policy-card p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 15px;
}

.policy-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.policy-card ul li {
    position: relative;
    padding-right: 25px;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #555;
    font-size: 1.02rem;
    line-height: 1.8;
    border-bottom: 1px solid rgba(10, 95, 89, 0.04);
}

.policy-card ul li:last-child {
    border-bottom: none;
}

.policy-card ul li::before {
    content: '\F287';
    font-family: 'bootstrap-icons';
    position: absolute;
    right: 0;
    color: #0a5f59;
    font-size: 0.75rem;
    top: 12px;
}

/* Table of Contents */
.policy-toc {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(10, 95, 89, 0.08);
    border: 1px solid rgba(10, 95, 89, 0.05);
    position: sticky;
    top: 120px;
}

.policy-toc h4 {
    color: #0a5f59;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(10, 95, 89, 0.1);
}

.policy-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-toc ul li {
    margin-bottom: 8px;
}

.policy-toc ul li a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 6px 12px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-right: 3px solid transparent;
}

.policy-toc ul li a:hover {
    color: #0a5f59;
    background: rgba(10, 95, 89, 0.05);
    border-right-color: #0a5f59;
}

/* Contact Box */
.policy-contact {
    background: linear-gradient(135deg, #0a5f59 0%, #084a45 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
    text-align: center;
    margin-top: 25px;
}

.policy-contact h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.policy-contact p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.policy-contact a {
    display: inline-block;
    background: #e4a520;
    color: #0a5f59;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.policy-contact a:hover {
    background: #f0b530;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .policy-hero { padding: 140px 0 60px; }
    .policy-hero h1 { font-size: 2.2rem; }
    .policy-card { padding: 30px 25px; }
    .policy-toc { position: static; margin-bottom: 30px; }
}

@media (max-width: 576px) {
    .policy-hero { padding: 120px 0 50px; }
    .policy-hero h1 { font-size: 1.8rem; }
    .policy-hero-icon { width: 60px; height: 60px; font-size: 1.5rem; }
    .policy-card { padding: 25px 20px; }
    .policy-card h2 { font-size: 1.35rem; }
}
