/* Policy Page Professional Styles */
.policy-container {
    padding: 151px 5% 100px;
    max-width: 1000px;
    margin: 0 auto;
    color: #fff;
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.policy-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.policy-last-updated {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.policy-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    line-height: 1.8;
}


.policy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #4facfe;
    /* Highlight color */
    display: flex;
    align-items: center;
    gap: 15px;
}

.policy-section h2 i {
    font-size: 1.4rem;
}

.policy-section p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.policy-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.policy-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #00f2fe;
}

.contact-box {
    background: rgba(79, 172, 254, 0.1);
    border: 1px solid rgba(79, 172, 254, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .policy-container {
        padding-top: 120px;
    }

    .policy-header h1 {
        font-size: 2.5rem;
    }

    .policy-content {
        padding: 30px 20px;
    }
}