main {
    padding: 6em;
    background-color: #212A31;
}

body {
    background-color: #2E3944;
}

.contact-section {
    background-color: #2E3944; 
    padding: 2em;
    border-radius: 1em;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(18, 78, 102, 0.3); 
    color: #D3D9D4; 
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 1em;
    font-size: 2em;
    color: #D3D9D4; 
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.contact-form label {
    font-weight: bold;
    margin-bottom: 0.5em;
    color: #D3D9D4;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75em;
    border: none;
    border-radius: 0.5em;
    font-size: 1em;
    background-color: #212A31;
    color: #D3D9D4;
    box-shadow: inset 0 0 5px rgba(18, 78, 102, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 10px #124E66;
}

.contact-form button {
    padding: 0.75em;
    font-size: 1em;
    border: none;
    border-radius: 0.5em;
    background-color: #124E66;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.contact-form button:hover {
    background-color: #748D92;
    transform: scale(1.05);
}

@media (max-width: 600px) {
    main {
        padding: 6em 2em;
    }
}
