/* Container & Typography */
.msc-vc-60052dde-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
}

.msc-vc-60052dde-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.msc-vc-60052dde-heading {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.msc-vc-60052dde-text {
    line-height: 1.6;
    margin: 0;
}

/* Hero Section */
.msc-vc-60052dde-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.msc-vc-60052dde-hero-content {
    flex: 1 1 300px;
}

.msc-vc-60052dde-title {
    font-size: 2.2rem;
    line-height: 1.2;
}

.msc-vc-60052dde-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.msc-vc-60052dde-hero-media {
    flex: 0 0 auto;
    max-width: 250px;
}

.msc-vc-60052dde-logo {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Badges */
.msc-vc-60052dde-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.msc-vc-60052dde-badge {
    background-color: #ff8210;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Button */
.msc-vc-60052dde-button {
    display: inline-block;
    background-color: #282164;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #282164;
}

.msc-vc-60052dde-button:hover {
    background-color: #ffffff;
    color: #282164;
}

/* Grid Layout for Description & Sidebar */
.msc-vc-60052dde-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 992px) {
    .msc-vc-60052dde-main-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* Service Description */
.msc-vc-60052dde-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.msc-vc-60052dde-card-header .msc-vc-60052dde-heading {
    margin-bottom: 0;
}

.msc-vc-60052dde-icon {
    font-size: 1.8rem;
    color: #282164;
    display: flex;
}

.msc-vc-60052dde-icon svg {
    width: 1em;
    height: 1em;
    fill: #282164;
}

.msc-vc-60052dde-justified {
    text-align: justify;
}

/* Sidebar & Steps */
.msc-vc-60052dde-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.msc-vc-60052dde-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.msc-vc-60052dde-step-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.msc-vc-60052dde-step-num {
    background-color: #282164;
    color: #ffffff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Important Notice */
.msc-vc-60052dde-notice {
    background-color: #fff9f2;
    border-left: 5px solid #ff8210;
    padding: 20px;
}