.contact-hero,
.contact-info-card {
    text-align: center;
}

.contact-hero,
.btn-contact-submit,
.btn-contact-submit:hover {
    color: #ffffff;
}

.contact-info-card,
.contact-form-box,
.contact-input:focus {
    background-color: #ffffff;
}

.contact-info-card,
.contact-form-box,
.contact-input {
    border: 1px solid #E5E7EB;
}

.contact-input,
.btn-contact-submit {
    width: 100%;
}

.contact-icon-wrapper,
.contact-info-title,
.contact-input {
    color: #111827;
}

.contact-hero {
    background-image: linear-gradient(135deg, #111827 0%, #4B5563 100%);
    padding: 80px 0;
    border-radius: 0 0 40px 40px;
    margin-bottom: 60px;
}

.contact-hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.contact-hero p {
    font-size: 18px;
    color: #D1D5DB;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-info-card {
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.contact-info-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-info-text {
    color: #4B5563;
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

.contact-form-box {
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.contact-input {
    background-color: #F9FAFB;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 15px;
    transition: all 0.2s ease;
}

.contact-input:focus {
    border-color: #2563EB;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-contact-submit {
    background-color: #2563EB;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-contact-submit:hover {
    background-color: #1D4ED8;
}