.msb-financial-contact-section {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto 40px;
    padding: 0 24px;
    font-family: 'Inter', sans-serif;
}

.msb-contact-section-title {
    color: #121d33;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.msb-contact-grid {
    display: flex;
    gap: 24px;
}

.msb-contact-card {
    flex: 1.8;
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.msb-card-heading {
    color: #121d33;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.msb-card-description {
    color: #121d33;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 400;
    opacity: 0.8;
}

.msb-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.msb-contact-info-item {
    display: flex;
    align-items: center;
}

.msb-contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.msb-contact-icon img {
    width: 100%;
    height: auto;
}

.msb-contact-label {
    min-width: 100px;
    color: #121d33;
    font-size: 15px;
    font-weight: 700;
    margin-right: 20px;
}

.msb-contact-value {
    color: #121d33;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}

.msb-contact-value a {
    color: #121d33;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.msb-contact-value a:hover {
    color: #d61e2b;
}

.msb-contact-image {
    flex: 1;
}

.msb-contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

@media (max-width: 900px) {
    .msb-contact-grid {
        flex-direction: column;
    }
    .msb-contact-image {
        order: -1;
        max-height: 300px;
    }
    .msb-contact-card {
        padding: 25px;
    }
}
