/* Policy Pages Styling */
.policy-section {
    padding-top: 120px;
    background-color: #f8f9fa;
}

.policy-section .badge {
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
    font-weight: 500;
    font-size: 0.9rem;
}

.policy-section .card {
    transition: transform 0.3s ease;
}

.policy-section .card:hover {
    transform: translateY(-5px);
}

.policy-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.policy-content .card {
    border-radius: 15px;
}

.policy-content h2 {
    color: #2c3e50;
    font-weight: 600;
}

.policy-content h3 {
    color: #34495e;
    font-weight: 500;
}

.policy-content .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.policy-content .list-unstyled li {
    padding: 8px 0;
}

.policy-content .text-primary {
    color: #007bff !important;
}

.policy-content .alert {
    border-radius: 10px;
}

.policy-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .policy-section {
        padding-top: 100px;
    }

    .policy-content {
        font-size: 1rem;
    }

    .policy-content .card {
        margin-bottom: 1rem;
    }
}
