/* Privacy Policy Styles */
.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
    color: #e6f1ff;
}

.policy-header {
    margin-bottom: 3rem;
    text-align: center;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: #64ffda;
    margin-bottom: 1rem;
}

.policy-header p {
    color: #8892b0;
    font-size: 1.1rem;
}

.policy-content {
    background: rgba(17, 34, 64, 0.6);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: #64ffda;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #64ffda;
    opacity: 0.6;
}

.policy-section p {
    color: #a8b2d1;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.policy-section li {
    color: #a8b2d1;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.6;
}

.policy-section li::before {
    content: '•';
    color: #64ffda;
    position: absolute;
    left: -1.5rem;
}

.policy-section a {
    color: #64ffda;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #fff;
}

.last-updated {
    text-align: right;
    color: #8892b0;
    font-style: italic;
    margin-top: 2rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .policy-container {
        padding: 5rem 1rem 2rem;
    }

    .policy-header h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }
}