.ci-53094a52-container {
    font-family: inherit;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.ci-53094a52-header {
    text-align: center;
    margin-bottom: 50px;
}
.ci-53094a52-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}
.ci-53094a52-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}
.ci-53094a52-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.ci-53094a52-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    text-align: center;
}
.ci-53094a52-card:hover {
    transform: translateY(-5px);
}
.ci-53094a52-card-icon-container {
    padding: 30px 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ci-53094a52-card-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.ci-53094a52-card-icon i {
    font-size: 40px;
    color: #333;
}
.ci-53094a52-card-icon svg {
    width: 40px;
    height: 40px;
    fill: #333;
}
.ci-53094a52-card-content {
    padding: 15px 25px 25px;
    flex-grow: 1;
}
.ci-53094a52-card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 0;
    color: #222;
}
.ci-53094a52-card-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}
.ci-53094a52-card-desc p {
    margin-top: 0;
    margin-bottom: 10px;
}
.ci-53094a52-card-desc p:last-child {
    margin-bottom: 0;
}