.services-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
    margin: 50px 0 0 0;
    background: linear-gradient(90deg,rgba(255,255,255,0.05),rgba(255,255,255,0.00));
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Maddeler */
.services-bullet {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    line-height: clamp(1.4, 2.5vw, 1.8);
    margin: 0 0 15px 0;
    font-weight: 300;
    text-align: center;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 25px;
    padding: 10px 30px;
    white-space: nowrap;
    background: linear-gradient(90deg,rgba(255,255,255,0.05),rgba(255,255,255,0.00));
}

.reveal-bullet {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-bullet.active {
    opacity: 1;
    transform: translateY(0);
}

.services-bullet:hover {
    background-color: rgba(255, 255, 255, 0.1);
    cursor: default;
}

.bullet-break {
    display: inline-block;      
    white-space: nowrap;
    margin: 0 4px;
}

/* Tablet ≤1024px */
@media (max-width:1024px){

    .services-bullet {
        display: flex;
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
        flex-wrap: wrap;
        border-radius: 20px;
        white-space: normal;
    }

    .services-text {
        padding-left: 50px;
        padding-right: 50px;
        margin: 50px 0 0 0;
    }
}

/* Telefon ≤740px */
@media (max-width:740px){

    .services-bullet {
        display: flex;
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
        flex-wrap: wrap;
        border-radius: 15px;
        white-space: normal;
    }

    .services-text {
        padding-left: 10px;
        padding-right: 10px;
        margin: 50px 0 0 0;
    }
}