/* Contact Form Section */
.contact-form {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #ece5df;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-form h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-form p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin: 0.5rem 0 0.3rem;
    color: #333;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #FFD700;
    outline: none;
}

.contact-form button {
    background-color: #FFD700;
    color: #333;
    font-weight: bold;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #333;
    color: #fff;
}

/* Social Media Section */
.social-media {
    text-align: center;
    margin-top: 3rem;
}

.social-media h2 {
    font-size: 1.8rem;
    color: #333;
}

.social-media p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icons a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.social-icons a:hover img {
    transform: scale(1.1);
}

/* CTA Section */
.cta {
    text-align: center;
    margin: 2rem auto;
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    padding: 1rem;
    border-top: 1px solid #ddd;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }

    .social-icons {
        flex-direction: column;
    }

    .social-icons a img {
        margin-bottom: 0.5rem;
    }
}







/* .contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

.contact-form label {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.contact-form button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0056b3;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}
 */
