.contact-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-header p
{
    color: #2c3e50;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #457ec4;
    box-shadow: 0 0 0 3px rgba(69, 126, 196, 0.2);
    outline: none;
}

.contact-form .btn-primary {
    align-self: flex-start;
    margin-top: 1rem;
}

/* Footer */
footer {
    background: rgba(44, 62, 80, 0.9);
    color: white;
    padding: 1.5rem 3rem;
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-size: 0.9rem;
    margin-top: auto;
}

footer p {
    margin: 0.3rem 0;
}

.footer-email {
    color: #a2c4e3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-email:hover {
    color: #ffffff;
    text-decoration: underline;
}


@media (max-width: 768px) {
    footer {
        padding: 1rem 1.5rem;
    }
}
