/* استایل کلی فرم تماس */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form-container h1 {
    text-align: center;
    color: #1a73e8;
    margin-bottom: 20px;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-container label {
    font-weight: bold;
    color: #333;
}

.contact-form-container input,
.contact-form-container textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 5px rgba(26, 115, 232, 0.5);
    outline: none;
}

.contact-form-container button {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form-container button:hover {
    background-color: #155cb0;
    transform: translateY(-2px);
}
.social-links {
    text-align: center;
    margin-top: 30px;
}

.social-links h2 {
    color: #1a73e8;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: #1a73e8;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
    color: #155cb0;
    transform: translateY(-2px);
}
.faq-section {
    margin-top: 30px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-question {
    width: 100%;
    text-align: right;
    background-color: transparent;
    border: none;
    font-size: 16px;
    font-weight: bold;
    color: #1a73e8;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #155cb0;
}

.faq-answer {
    padding: 10px;
    font-size: 14px;
    color: #555;
    display: none;
}

.faq-answer.active {
    display: block;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form-container,
.social-links,
.faq-section {
    animation: fadeIn 0.5s ease-out;
}