.contact-form-section {
    padding: 4rem 1rem;
}

.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #00c3ff;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
}

.btn-submit {
    background-color: #007BFF;
    color: #ffffff;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #0056b3;
}
