/* FAQ Section Styling */
.faq-section {
    text-align: center;
    padding: 50px 20px;
    color: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.faq-question {
    background: none;
    border: none;
    color: #ffffff;
    padding: 15px 20px;
    text-align: left;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.faq-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 1rem;
    font-family: 'IBM Plex Mono', monospace;
    color: #cccccc;
    transition: max-height 0.3s ease;
}

/* Expanded FAQ Answer */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 20px;
}

.faq-item.active .faq-arrow {
    transform: rotate(45deg); /* Rotate the arrow */
}


/* Contact Message Section */
.contact-message {
    text-align: center;
    margin-top: 30px;
    color: #ffffff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1rem;
}

.contact-message a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-message a:hover {
    color: #cccccc;
}
