
h1 {
    padding: 20px;
    text-align: center;
    color: #0056b3;
}
.faq-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.faq {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}
.faq-question {
    cursor: pointer;
    position: relative;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #0056b3;
}
.faq-question::after {
    content: '\25BC';
    position: absolute;
    right: 10px;
    transition: transform 0.3s;
}
.faq-question.active::after {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0; /* Ensure no padding in default state */
}

.faq-answer.open {
    max-height: 500px;
    padding: 10px; 
}

a {
    color: #0056b3;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {

    @media (max-width: 480px) {
        h1 {
            font-size: 24px;
        }
    
        .faq-container {
            margin: 10px;
            padding: 15px;
        }
    
        .faq-question {
            font-size: 16px;
            padding: 8px;
        }
    
        .faq-answer {
            font-size: 14px;
            padding: 0; 
        }
    
        .faq-answer.open {
            max-height: 300px; 
            padding: 8px;
        }
    }
}