.contact-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--black-text);
    max-width: 700px;
    margin: 0 auto;
}

.contact-card {
    border-radius: 10px;
    padding: 40px;
    border: 0.5px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-method {
    margin-bottom: 30px;
}

.contact-method h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-method h3 i {
    margin-right: 10px;
    color: var(--primary);
}

.contact-method p {
    color: var(--black-text);
    margin-bottom: 20px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 10px;
}

.contact-link i {
    margin-right: 8px;
}

.contact-link:hover {
    color: var(--primary);
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    border-radius: 6px;
    padding: 9px 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--primary);
}

.form-select {
    padding: 12px 15px;
    margin-bottom: 20px;
}

.divider {
    border-top: 1px solid #eee;
    margin: 40px 0;
}

.address {
    font-style: normal;
    color: var(--black-text);
    margin-top: 20px;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }

    .section-header h1 {
        font-size: 2rem;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-method {
        margin-bottom: 25px;
    }
}