/* ==== POLICY PAGES STYLES ==== */
.policy-section {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #FFFBF7 0%, #F8F6FF 100%);
    min-height: 100vh;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.policy-title {
    font-size: 2.5rem;
    color: #7B2CBF;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
}

.policy-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #F76E11 0%, #FF8C42 100%);
    border-radius: 2px;
}

.policy-subtitle {
    font-size: 1.1rem;
    color: #30475E;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.policy-meta {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(123, 44, 191, 0.1);
    border-radius: 10px;
    border-left: 4px solid #7B2CBF;
}

.policy-meta p {
    margin: 0;
    font-size: 0.9rem;
    color: #30475E;
}

.policy-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.1);
    position: relative;
    overflow: hidden;
}

.policy-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #7B2CBF 0%, #F76E11 100%);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.1;
}

.policy-content h2 {
    color: #7B2CBF;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
    position: relative;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h2::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #F76E11 0%, #FF8C42 100%);
    border-radius: 2px;
}

.policy-content h3 {
    color: #30475E;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.policy-content p {
    color: #30475E;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.policy-content ul,
.policy-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-content li {
    color: #30475E;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: #7B2CBF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.policy-content a:hover {
    color: #F76E11;
    border-bottom-color: #F76E11;
}

.policy-content strong {
    color: #7B2CBF;
    font-weight: 600;
}

.policy-content em {
    color: #30475E;
    font-style: italic;
}

.policy-highlight {
    background: linear-gradient(135deg, #F76E11 0%, #FF8C42 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.policy-highlight::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="90" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="30" r="1" fill="white" opacity="0.1"/><circle cx="70" cy="70" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

.policy-highlight > * {
    position: relative;
    z-index: 2;
}

.policy-highlight h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 1rem;
}

.policy-highlight p {
    color: white;
    opacity: 0.9;
}

.policy-contact {
    background: linear-gradient(135deg, #7B2CBF 0%, #9A4CDA 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
}

.policy-contact h3 {
    color: #F76E11;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.policy-contact p {
    color: white;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.policy-contact a {
    color: #F76E11;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.policy-contact a:hover {
    color: white;
    text-decoration: underline;
}

.policy-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.policy-nav-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: white;
    color: #7B2CBF;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #7B2CBF;
    box-shadow: 0 5px 15px rgba(123, 44, 191, 0.2);
}

.policy-nav-btn:hover {
    background: #7B2CBF;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(123, 44, 191, 0.3);
}

.policy-nav-btn.home {
    background: linear-gradient(135deg, #F76E11 0%, #FF8C42 100%);
    color: white;
    border-color: #F76E11;
}

.policy-nav-btn.home:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #F76E11 100%);
    transform: translateY(-2px) scale(1.05);
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(123, 44, 191, 0.1);
}

.policy-table th {
    background: linear-gradient(135deg, #7B2CBF 0%, #9A4CDA 100%);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.policy-table td {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    color: #30475E;
}

.policy-table tr:last-child td {
    border-bottom: none;
}

.policy-table tr:hover {
    background: rgba(123, 44, 191, 0.05);
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
    .policy-section {
        padding: 120px 0 60px;
    }
    
    .policy-container {
        padding: 0 15px;
    }
    
    .policy-title {
        font-size: 2rem;
    }
    
    .policy-subtitle {
        font-size: 1rem;
    }
    
    .policy-content {
        padding: 2rem 1.5rem;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
    
    .policy-content h3 {
        font-size: 1.2rem;
    }
    
    .policy-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .policy-nav-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .policy-table {
        font-size: 0.9rem;
    }
    
    .policy-table th,
    .policy-table td {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 100px 0 40px;
    }
    
    .policy-title {
        font-size: 1.8rem;
    }
    
    .policy-content {
        padding: 1.5rem 1rem;
    }
    
    .policy-content h2::before {
        left: -0.5rem;
        width: 2px;
    }
    
    .policy-content ul,
    .policy-content ol {
        padding-left: 1.5rem;
    }
    
    .policy-highlight,
    .policy-contact {
        padding: 1.5rem;
    }
    
    .policy-table {
        font-size: 0.8rem;
    }
    
    .policy-table th,
    .policy-table td {
        padding: 0.6rem;
    }
} 