.cyac-tech-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.cyac-tech-tabs button {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
}

.cyac-tech-tabs button.active {
    background: #000;
    color: #fff;
}

.cyac-tech-content {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cyac-tech-content.active {
    display: grid;
}

.cyac-tech-card {
    background: #000;
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

