.contact-section {
    padding: 50px 20px;
    text-align: center;
}

.contact-section h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color:  #0D0D0D;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 16px;
    margin-bottom: 8px;
    color: #000;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

button[type="submit"] {
    padding: 12px 20px;
    font-size: 18px;
    color: #fff;
    background-color: #1d5b1d;;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #5aba4a;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon i {
    font-size: 32px;
    color: #363636;
    transition: color 0.3s ease;
}

.social-icon:hover i {
    color: #1d5b1d;
}