/* Make links section responsive */
.policy-links {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    text-align: center;
    margin-top: 150px;
    margin-bottom: 60px;
}

/* Button styling */
.policy-button {
    text-decoration: none;
    color: white;
    background: #007bff;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Hover effect */
.policy-button:hover {
    background: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .policy-button {
        font-size: 16px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .policy-links {
        flex-direction: column;
        align-items: center;
    }

    .policy-button {
        width: 80%;
        text-align: center;
        padding: 14px;
        font-size: 16px;
    }
}
