h2, h4 {
    font-family: 'Raleway', sans-serif;
}

/* General Section Styles */
.section-title {
    font-size: 2em;
    margin-bottom: 30px;
    font-weight: bold;
}

.section-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #777;
}

/* Contact Form Styles */
.contact-section {
    padding: 40px 0;
}

.contact-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.contact-btn {
    background-color: #333;
    border-color: #333;
    color: #fff;
    transition: all 0.3s;
}

.contact-btn:hover {
    background-color: #555;
    border-color: #555;
}

/* FAQ Styles */
.faq-section {
    padding: 40px 0;
}

.faq-item-question {
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-item-question:hover {
    color: #333;
}

.faq-item-answer {
    margin-top: 10px;
    color: #666;
}

/* Shadow and Animation */
.contact-card, .faq-item {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.contact-card:hover, .faq-item:hover {
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card, .faq-item {
    animation: fadeIn 0.5s forwards;
}