.contact-header {
    text-align: center;
    padding: 60px 10%;
    color: white;
}
.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ff7043;
    text-shadow: 0px 0px 15px rgba(255, 112, 67, 0.8);
}
.contact-header p {
    font-size: 1.2rem;
    color: #bbb;
}
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 40px 10%;
    text-align: center;
}
.contact-card {
    background: #222;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 15px rgba(255, 112, 67, 0.2);
    position: relative;
    overflow: hidden;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 20px rgba(126, 87, 194, 0.5);
}
.contact-card a {
    color: #ff7043;
    text-decoration: none;
    font-weight: bold;
}
.contact-card a:hover {
    color: #7e57c2;
}
.legal-info {
    text-align: center;
    padding: 40px 10%;
    color: white;
}
.legal-info a {
    color: #7e57c2;
    text-decoration: none;
}
.legal-info a:hover {
    color: #ff7043;
}
.faq-section {
    text-align: center;
    padding: 60px 10%;
    color: white;
}
.faq-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff7043;
}
.faq-container {
    max-width: 800px;
    margin: auto;
}
.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    background: #222;
    border: 2px solid #7e57c2;
    transition: all 0.3s ease-in-out;
    position: relative;
}
.faq-question {
    width: 100%;
    background: none;
    color: white;
    border: none;
    padding: 15px;
    text-align: left;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
    min-height: 60px;
}
.faq-question:hover {
    background: rgba(255, 112, 67, 0.2);
}
.faq-question .arrow {
    transition: transform 0.3s ease-in-out;
}
.faq-item.open .arrow {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #333;
    padding: 0 15px;
    opacity: 0;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out, opacity 0.3s ease-in-out;
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}
.faq-answer p {
    font-size: 1rem;
    color: #bbb;
    margin: 15px 0;
}
.faq-answer a {
    color: #7e57c2;
    text-decoration: none;
}
.faq-answer a:hover {
    color: #ff7043;
}