.contact-section h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #e72d2d;
}

.contact-section p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #360d73;
    font-weight: bold;
}

.contact-form {
    display: flex;
    margin-top: 4px;
    padding-top: 4px;
    flex-direction: column;
    gap: 15px; 

}

.contact-form input,
.contact-form textarea {
    width: 50%;
    padding: 3px; 
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
    margin-top: 1px;
    color:#2a1885;
}

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

.contact-form button {
    background-color: #30cfd0;
    color: white;
    border: none;
    padding: 12px; /* Slightly reduced padding for better fit */
    border-radius: 55px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #28b7b5;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .contact-section {
        padding: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px; /* Further reduced padding for smaller screens */
    }

    .contact-form button {
        padding: 10px; /* Further reduced padding for smaller screens */
    }
}

