h2 {
    margin-bottom: 20px;
}
.steps-container{
    margin: 40px auto 0px;
}

@media (max-width: 767px) {
    h2 {
        margin-bottom: 10px;
    }
    .steps-container{
        margin: 0px auto 0px;
    }
}

.image-text .centered-list li {
    padding-left: 0;
}

.image-text .centered-list li::before {
    content: ""
}

.image-text .centered-list .title {
    font-size: 18px;
    font-weight: 600;
}

.products_dec{
    margin-bottom: 20px;
}

.black-background {
    background: black;
    color: #fff;
}

.common-img {
    margin-bottom: 50px;
}


.wrapper {
    max-width: 1100px;
    margin: 40px auto 60px;
    padding: 0 16px;
}

.wrapper .tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.wrapper .glow-btn {
    position: relative;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: #000;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    z-index: 0;
}

.wrapper .glow-btn.active::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(
            90deg,
            #b86cff,
            #ffcf4a,
            #b86cff
    );
    z-index: -1;
}

.wrapper .glow-btn.active::after {
    content: "";
    position: absolute;
    inset: 1px;
    background: #000;
    border-radius: 10px;
    z-index: -1;
}

.wrapper .glow-btn {
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.35),
    0 0 12px rgba(255, 255, 255, 0.25);
}

.wrapper .glow-btn:hover {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.55),
    0 0 10px rgba(255, 255, 255, 0.35);
}

.wrapper .content {
    max-width: 787px;
    background: white;
    border-radius: 12px;
    padding: 5px 0 15px;
    justify-content: center;
    margin: 0 auto;
}

.wrapper .panel {
    display: none;
    text-align: center;
}

.wrapper .panel.active {
    display: block;
}

.wrapper .panel img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 16px;
}

.wrapper .panel p {
    color: black;
    line-height: 1.6;
    width: 650px;
    margin: 0 auto;
}

@media (max-width: 1023px) {
    .wrapper .tabs {
        flex-direction: column;
    }

    .wrapper .content {
        padding: 5px;
    }

    .wrapper .panel p {
        width: auto;
        margin: 0 20px;
    }
}


.card-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 20px auto 40px;
}


.feature-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
}

.card-desc {
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 10px;
}

.tag {
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 1023px) {
    .feature-tags {
        grid-template-columns: repeat(1, 1fr);
    }
    .image-text-top{
        margin-top: 20px;
    }
}
@media (max-width: 767px){
    .image-text{
        margin: 20px 0;
    }
    .common-img {
        margin-bottom: 10px;
    }
    .wrapper{
        margin-bottom: 20px;
    }
}

