.contact-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
}

.contact-info-box,
.contact-form {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #303c7a;
    margin-bottom: 1rem;
}

.contact-info-box ul li {
    font-size: 15px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    font-size: 20px;
    color: #303c7a;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.contact-info a {
    text-decoration: none;
    color: #303c7a;
    display: block;
}

.contact-info a:hover .contact-icon {
    color: #40a5dd;
}

.contact-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #303c7a;
    margin-bottom: 4px;
}

.contact-form .form-control {
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
}

.btn-contact {
    background-color: #303c7a;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.btn-contact:hover {
    background-color: #40a5dd;
    color: white;
}

.upload-icon-label {
    cursor: pointer;
    color: #303c7a;
    transition: color 0.3s ease;
}

.upload-icon-label:hover {
    color: #40a5dd;
}