.ib-2668a972-container {
    padding: 40px;
    font-family: sans-serif;
}
.ib-2668a972-header {
    text-align: center;
    margin-bottom: 40px;
}
.ib-2668a972-headline {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}
.ib-2668a972-intro {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}
.ib-2668a972-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.ib-2668a972-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}
.ib-2668a972-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}
.ib-2668a972-card-inner {
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ib-2668a972-card-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}
.ib-2668a972-card-icon svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
}
.ib-2668a972-card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}
.ib-2668a972-panel {
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    padding: 0;
}
.ib-2668a972-panel.active {
    display: block;
    animation: fadeIn_2668a972 0.4s ease forwards;
}
.ib-2668a972-panel-content {
    padding: 30px;
}
.ib-2668a972-panel-item {
    margin-bottom: 15px;
    line-height: 1.6;
}
.ib-2668a972-panel-label {
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}
.ib-2668a972-btn {
    display: inline-block;
    padding: 12px 24px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: opacity 0.3s ease;
}
.ib-2668a972-btn:hover {
    opacity: 0.8;
}

/* Desktop vs Mobile logic */
.ib-2668a972-panel-mobile {
    display: none !important;
}

@media (max-width: 768px) {
    .ib-2668a972-grid {
        grid-template-columns: 1fr;
    }
    .ib-2668a972-desktop-panels {
        display: none !important;
    }
    .ib-2668a972-panel-mobile {
        display: none;
        border: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        border-radius: 0;
    }
    .ib-2668a972-card.active .ib-2668a972-panel-mobile {
        display: block !important;
    }
    .ib-2668a972-card:hover {
        transform: none;
    }
}

@keyframes fadeIn_2668a972 {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}