.contact-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
      url('../images/contact-hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.contact-hero .hero-content {
    max-width: 800px;
}

.contact-hero .tagline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--light-color);
}

.contact-section {
    background-color: var(--dark-color);
    padding: 5rem 0;
}

.contact-info-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-info-centered p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.contact-details {
    margin: 3rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
}

.contact-item .icon {
    margin-bottom: 1rem;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    text-align: center;
    margin-bottom: 0.3rem;
}

.contact-item p a {
    color: var(--light-color);
    transition: color 0.3s ease;
}

.contact-item p a:hover {
    color: var(--primary-color);
}

.social-connect {
    text-align: center;
}

.social-connect h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.social-connect .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-connect .social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-connect .social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.faq-section {
    background-color: #0a0a0a;
    padding: 5rem 2rem;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--light-color);
}

.faq-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .contact-hero {
        height: 40vh;
    }

    .contact-hero .tagline {
        font-size: 1.1rem;
    }

    .contact-details {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .contact-item {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .faq-question {
        padding: 1.2rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .social-connect .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
