.contact-section {
    max-width: 700px;
    margin: 6rem auto;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-primary {
    background-color: #0052cc;
    color: #fff;
    padding: 0.8rem 1.4rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: #003e99;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert.success {
    background: #e6f4ea;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.alert.error {
    background: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}