.answer-sec, .privacy-header {
    background: linear-gradient(to right, #17b19c62, #444748, #000000);
    padding: 20px;
}

/* Responsive Typography */
.privacy-heading h1, #p {
    color: white;
    text-align: center;
    margin-top: 30px;
    font-size: clamp(1.5rem, 4vw, 2.5rem); /* Adjust size dynamically */
    line-height: 1.4;
    padding: 0 10px;
}

/* Responsive Animation */
.privacy-heading {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeSlideIn 1s ease-in-out forwards;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .answer-sec, .privacy-header {
        padding: 15px;
        text-align: center;
    }
    
    .privacy-heading h1, #p {
        font-size: 1.8rem;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-heading h1, #p {
        font-size: 1.5rem;
        margin-top: 15px;
    }
}
