.sc-section-container-d6828662 {
    padding: 60px 24px;
    background-color: #f9fafb;
    font-family: inherit;
    box-sizing: border-box;
}

.sc-max-width-d6828662 {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sc-header-d6828662 {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 16px auto;
}

.sc-title-d6828662 {
    font-size: 28px;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 16px 0;
}

.sc-desc-d6828662 {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* Cards Grid */
.sc-cards-grid-d6828662 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.sc-card-d6828662 {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.sc-card-d6828662:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.sc-card-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.sc-card-icon-d6828662 {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.sc-card-icon-d6828662 i {
    font-size: 20px;
}

.sc-card-icon-d6828662 svg {
    width: 20px;
    height: 20px;
}

.sc-card-title {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 8px 0;
    color: #1A1A1A;
}

.sc-card-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #888888;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sc-card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 24px 0;
}

.sc-bullets-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sc-bullets-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #444444;
}

.sc-bullet-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.sc-bullet-icon i {
    font-size: 14px;
}

/* Footer Section */
.sc-footer-d6828662 {
    text-align: center;
    max-width: 650px;
    margin: 16px auto 0 auto;
}

.sc-cta-title {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 12px 0;
}

.sc-cta-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin: 0 0 24px 0;
}

.sc-btn-wrapper {
    display: flex;
    justify-content: center;
}

.sc-btn-d6828662 {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent;
}

/* Responsiveness */
@media (max-width: 768px) {
    .sc-cards-grid-d6828662 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .sc-section-container-d6828662 {
        padding: 40px 16px;
    }
}
