@import url('index.css');

.policy-section {
    padding: 120px 0 80px;
    background: var(--dark);
    position: relative;
    min-height: 100vh;
}

.policy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
}

.page-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.policy-content {
    background: var(--dark-card);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.2);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.policy-content>p:first-child {
    background: rgba(0, 212, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    margin-bottom: 2rem;
}

.policy-content h2 {
    color: var(--primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.policy-content ul {
    margin: 1.5rem 0;
    padding-left: 2.5rem;
}

.policy-content li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.9;
    font-size: 1.05rem;
    position: relative;
}

.policy-content li::marker {
    color: var(--primary);
}

.policy-content strong {
    color: var(--white);
    font-weight: 600;
}

.contact-details {
    background: rgba(0, 212, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
}

.contact-details p {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.highlight-box {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--text-light);
}

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

    .page-title {
        font-size: 2.5rem;
    }

    .policy-content h2 {
        font-size: 1.5rem;
    }
}