.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 50vh;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
        height: auto;
    }
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

/* Form styles */
.form-input {
    width: 100%;
    background-color: #2D2D2D;
    border: 1px solid #3D3D3D;
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    color: white;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #22D3EE;
    box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.2);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #D1D5DB;
    font-weight: 500;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(34, 211, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #22D3EE;
    flex-shrink: 0;
}

/* FAQ Collapse Styles */
.faq-item {
    border: 1px solid #3D3D3D;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #22D3EE;
    box-shadow: 0 4px 12px rgba(34, 211, 238, 0.1);
}

.faq-question {
    background-color: #2D2D2D;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background-color: #3D3D3D;
}

.faq-question.active {
    background-color: rgba(34, 211, 238, 0.1);
    color: #22D3EE;
}

.faq-answer {
    background-color: #1E1E1E;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.open {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    color: #22D3EE;
}

.faq-icon.rotate {
    transform: rotate(180deg);
}