.policy-page {
    background: #f8fafc;
    min-height: 100vh;
}

/* Hero Section */
.policy-hero {
    background: linear-gradient(135deg, var(--soft-blue) 0%, var(--light-blue) 100%);
    padding: 80px 0 60px;
    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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" style="stop-color:%233b82f6;stop-opacity:0.05"/><stop offset="100%" style="stop-color:%233b82f6;stop-opacity:0"/></radialGradient></defs><circle cx="300" cy="300" r="250" fill="url(%23a)"/><circle cx="700" cy="700" r="350" fill="url(%23a)"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.6;
}

.policy-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.policy-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.policy-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.policy-last-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--text-gray);
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

/* Navigation Sidebar */
.policy-content {
    padding: 60px 0;
}

.policy-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.policy-nav {
    position: sticky;
    top: 150px;
    height: fit-content;
}

.policy-nav-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.08);
}

.policy-nav-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.policy-nav-item {
    margin-bottom: 8px;
}

.policy-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.policy-nav-link:hover,
.policy-nav-link.active {
    background: var(--soft-blue);
    color: var(--primary-blue);
    transform: translateX(5px);
}

.policy-nav-link i {
    width: 16px;
    text-align: center;
}

/* Main Content */
.policy-main {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.08);
}

.policy-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f1f5f9;
}

.policy-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.policy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin: 30px 0 15px 0;
}

.policy-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin: 25px 0 10px 0;
}

.policy-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.policy-section ul,
.policy-section ol {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 15px 0 15px 25px;
}

.policy-section li {
    margin-bottom: 8px;
}

/* Highlight Boxes */
.policy-highlight {
    background: var(--soft-blue);
    border-left: 4px solid var(--primary-blue);
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
}

.policy-highlight.warning {
    background: #fff7ed;
    border-left-color: var(--warning-yellow);
}

.policy-highlight.success {
    background: #f0fdf4;
    border-left-color: var(--success-green);
}

.policy-highlight p {
    margin: 0;
    font-weight: 500;
}

.policy-highlight .highlight-title {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Contact Box */
.policy-contact-box {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 30px;
    border-radius: 16px;
    margin: 40px 0;
    text-align: center;
}

.policy-contact-box h3 {
    color: white;
    margin-bottom: 15px;
}

.policy-contact-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.policy-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--primary-blue);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.policy-contact-btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Table Styles */
.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.policy-table th,
.policy-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.policy-table th {
    background: var(--soft-blue);
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.policy-table td {
    color: var(--text-gray);
}

.policy-table tr:last-child td {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .policy-layout {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }
    
    .policy-nav-card {
        padding: 20px;
    }
    
    .policy-main {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .policy-hero-title {
        font-size: 2.2rem;
    }
    
    .policy-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .policy-nav {
        position: static;
        order: 2;
    }
    
    .policy-nav-card {
        padding: 20px;
    }
    
    .policy-nav-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
    }
    
    .policy-main {
        order: 1;
        padding: 25px;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-table {
        font-size: 0.9rem;
    }
    
    .policy-table th,
    .policy-table td {
        padding: 10px;
    }
}