.st-1ab18f7c-wrapper {
    font-family: 'Poppins', 'Helvetica Neue', sans-serif;
    color: #ffffff;
    box-sizing: border-box;
}

.st-1ab18f7c-container {
    /*max-width: 1200px;*/
    margin: 0 auto;
}

.st-1ab18f7c-header {
    text-align: center;
    margin-bottom: 50px;
}

.st-1ab18f7c-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.25;
}

.st-1ab18f7c-subtitle {
    font-size: 16px;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid layout with 70/30 split */
.st-1ab18f7c-grid-wrapper {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 40px;
    align-items: start;
}

.st-1ab18f7c-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* Cards styles */
.st-1ab18f7c-card {
    border: 1px solid #222;
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 150px;
}

.st-1ab18f7c-card:hover {
    border-color: #444;
    transform: translateY(-2px);
}

.st-1ab18f7c-card.is-active {
    background-color: #0d0d0d;
}

.st-1ab18f7c-card-icon {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1;
}

.st-1ab18f7c-card-icon svg {
    width: 32px;
    height: 32px;
}

.st-1ab18f7c-card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Details Panel styling */
.st-1ab18f7c-details-panel {
    background-color: transparent;
    padding: 10px 0;
}

.st-1ab18f7c-details-title {
    font-size: 24px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.3;
}

.st-1ab18f7c-details-text {
    font-size: 15px;
    line-height: 1.7;
}

/* Perfect Fluid Responsive adjustments */
@media (max-width: 1100px) {
    .st-1ab18f7c-grid-wrapper {
        grid-template-columns: 6.5fr 3.5fr;
        gap: 30px;
    }
    .st-1ab18f7c-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .st-1ab18f7c-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .st-1ab18f7c-details-panel {
        border-top: 1px solid #222;
        padding-top: 30px;
    }
}

@media (max-width: 600px) {
    .st-1ab18f7c-cards-grid {
        grid-template-columns: 1fr;
    }
    .st-1ab18f7c-title {
        font-size: 28px;
    }
    .st-1ab18f7c-card {
        min-height: 120px;
        padding: 20px;
    }
}
