.mas-62353e52-container {
    font-family: 'Poppins', sans-serif;
    background-color: #fdfdf9;
    padding: 60px 20px;
    border-radius: 16px;
}
.mas-62353e52-header {
    text-align: center;
    margin-bottom: 50px;
}
.mas-62353e52-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #282164;
}
.mas-62353e52-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}
.mas-62353e52-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.mas-62353e52-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid transparent;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}
.mas-62353e52-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 130, 16, 0.15);
    border-color: rgba(255, 130, 16, 0.3);
}
.mas-62353e52-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 600;
}
.mas-62353e52-label {
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.mas-62353e52-badge {
    background-color: #ff8210;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
}
.mas-62353e52-card-media {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.mas-62353e52-logo {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
}
.mas-62353e52-logo-placeholder {
    width: 80px;
    height: 30px;
    background-color: #eee;
    border-radius: 4px;
}
.mas-62353e52-icon-wrap {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 130, 16, 0.1);
}
.mas-62353e52-icon-wrap i {
    font-size: 18px;
    color: #ff8210;
}
.mas-62353e52-icon-wrap svg {
    width: 18px;
    height: 18px;
    fill: #ff8210;
}
.mas-62353e52-card-content {
    flex-grow: 1;
}
.mas-62353e52-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #282164;
    margin-bottom: 12px;
}
.mas-62353e52-card-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    text-align: justify;
}
.mas-62353e52-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}
.mas-62353e52-btn {
    flex: 1;
    text-align: center;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.mas-62353e52-btn-outline {
    border: 2px solid #282164;
    color: #282164;
    background: transparent;
}
.mas-62353e52-btn-outline:hover {
    background: #282164;
    color: #fff;
}
.mas-62353e52-btn-solid {
    background: #ff8210;
    color: #fff;
    border: 2px solid #ff8210;
}
.mas-62353e52-btn-solid:hover {
    background: #e6750d;
    border-color: #e6750d;
    color: #fff;
}
.mas-62353e52-cta-wrap {
    background-color: #282164;
    color: #fff;
    border-radius: 12px;
    padding: 30px;
    margin: 50px auto 0;
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.mas-62353e52-cta-text {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    flex: 1;
    min-width: 250px;
}
.mas-62353e52-cta-buttons {
    display: flex;
    gap: 15px;
}
.mas-62353e52-btn-white-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.mas-62353e52-btn-white-outline:hover {
    background: #fff;
    color: #282164;
}
.mas-62353e52-btn-white {
    background: #fff;
    color: #282164;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.mas-62353e52-btn-white:hover {
    background: #f0f0f0;
}

@media (max-width: 767px) {
    .mas-62353e52-grid {
        grid-template-columns: 1fr;
    }
    .mas-62353e52-card-actions {
        flex-direction: column;
    }
    .mas-62353e52-cta-wrap {
        flex-direction: column;
        text-align: center;
    }
    .mas-62353e52-cta-buttons {
        width: 100%;
        flex-direction: column;
    }
}