/* Contact Form Section */
#contact {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.contact-form {
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 28px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group textarea {
    resize: vertical;
}

#submit-button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#submit-button:hover {
    background-color: #0056b3;
}

#success-message {
    font-weight: bold;
}

/* Contact Information Section */
.address, .phone, .email {
    margin-bottom: 20px;
}

.address p, .phone a, .email a {
    color: #333;
}

/* Social Icons Section */
.social-icons a {
    margin-right: 10px;
}

.social-icons a i {
    font-size: 24px;
}

/* Adjust the icon colors as needed */
.social-icons a i.fa-instagram {
    color: #bc2a8d;
}

.social-icons a i.fa-facebook {
    color: #1877f2;
}

.social-icons a i.fa-whatsapp {
    color: #25d366;
}

.social-icons a i.fa-linkedin {
    color: #0a66c2;
}

.social-icons a i.fa-phone {
    color: #007bff;
}

.social-icons a i.fa-envelope {
    color: #d44638;
}
