.contact-section { padding: 80px 20px; max-width: 600px; margin: 0 auto; color: white; }
.form-group { margin-bottom: 20px; }
input, select, textarea {
    width: 100%;
    padding: 15px;
    background: #222;
    border: 1px solid #444;
    color: white;
    box-sizing: border-box; /* Ensures padding doesn't break layout */
}

button {
    width: 100%;
    padding: 15px;
    background: #ff5722; /* High contrast button */
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover { background: #e64a19; }

/* Mobile optimization */
@media (max-width: 600px) {
    .contact-section { padding: 40px 10px; }
    .contact-section h2{
        font-size: 2.5rem;
    }
}