/* Container structural sizing */
.rwc-c5dabc3f-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 10px 50px 35px 50px;
    background-color: #ffffff;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Header Section */
.rwc-c5dabc3f-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 45px auto;
}

.rwc-c5dabc3f-title {
    margin: 0 auto 12px auto;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #071B3A;
}

.rwc-c5dabc3f-underline {
    width: 90px;
    height: 3px;
    background-color: #0D47A1;
    margin: 0 auto 20px auto;
}

.rwc-c5dabc3f-intro {
    font-size: 15px;
    line-height: 1.6;
    color: #071B3A;
    margin: 0;
}

/* 4 Column Feature Row */
.rwc-c5dabc3f-cards-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: 45px;
}

.rwc-c5dabc3f-card-wrap {
    flex: 1;
    position: relative;
    padding: 0 20px;
}

/* Vertical divider line between cards only */
.rwc-c5dabc3f-card-wrap:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background-color: #E2E8F0;
}

.rwc-c5dabc3f-card {
    text-align: center;
}

.rwc-c5dabc3f-card-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #0D47A1;
    font-size: 50px;
    margin-bottom: 20px;
}

.rwc-c5dabc3f-card-icon svg {
    width: 50px;
    height: 50px;
    fill: #0D47A1;
}

.rwc-c5dabc3f-card-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 700;
    color: #071B3A;
    line-height: 1.3;
}

.rwc-c5dabc3f-card-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #071B3A;
}

/* Bottom CTA Bar */
.rwc-c5dabc3f-cta-bar {
    max-width: 1380px;
    margin: 0 auto;
    background-color: #F2F7FF;
    border-radius: 8px;
    padding: 15px 30px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 25px;
    box-sizing: border-box;
}

.rwc-c5dabc3f-cta-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #0D47A1;
    font-size: 32px;
}

.rwc-c5dabc3f-cta-icon svg {
    width: 32px;
    height: 32px;
    fill: #0D47A1;
}

.rwc-c5dabc3f-cta-heading {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 700;
    color: #071B3A;
}

.rwc-c5dabc3f-cta-text {
    margin: 0;
    font-size: 14px;
    color: #071B3A;
}

.rwc-c5dabc3f-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0D47A1;
    color: #FFFFFF;
    height: 42px;
    width: 250px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    text-align: center;
}

.rwc-c5dabc3f-cta-btn:hover {
    background-color: #071B3A;
    color: #FFFFFF;
}

/* Tablet Responsive Breakpoint */
@media (max-width: 1024px) {
    .rwc-c5dabc3f-container {
        padding: 10px 30px 30px 30px;
    }
    .rwc-c5dabc3f-cards-row {
        flex-wrap: wrap;
    }
    .rwc-c5dabc3f-card-wrap {
        flex: 0 0 50%;
        margin-bottom: 30px;
        box-sizing: border-box;
    }
    /* Change dividers for 2 column layout */
    .rwc-c5dabc3f-card-wrap:nth-child(even)::after {
        display: none;
    }
    .rwc-c5dabc3f-card-wrap:nth-child(odd)::after {
        right: 0;
    }
    .rwc-c5dabc3f-cta-bar {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 25px;
    }
    .rwc-c5dabc3f-cta-icon {
        margin: 0 auto;
    }
    .rwc-c5dabc3f-cta-btn {
        margin: 0 auto;
    }
}

/* Mobile Responsive Breakpoint */
@media (max-width: 767px) {
    .rwc-c5dabc3f-container {
        padding: 10px 20px 25px 20px;
    }
    .rwc-c5dabc3f-card-wrap {
        flex: 0 0 100%;
        padding: 0;
    }
    /* Remove vertical divider lines on mobile */
    .rwc-c5dabc3f-card-wrap::after {
        display: none !important;
    }
    .rwc-c5dabc3f-cta-btn {
        width: 100%;
    }
}
