.app-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5vh 10vw;
}

.phone-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone {
    width: 100%;
}


.features-container {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-title {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    margin-bottom: 0;
}

.feature-title h3 {
    flex: 1;
    text-align: center;
    font-weight: 600;
    color: #1C1C1C;
    font-size: 32px;
    line-height: 48px;
}

.feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-weight: 500;
    color: #000;
    margin-bottom: 0;
}

.feature p {
    flex: 1;
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    line-height: 36px;
}

.line-container {
    position: relative;
    width: 2px;
    height: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dashed-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        #000,
        #000 2px,
        transparent 2px,
        transparent 6px
    );
}

.circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #000;
    position: relative;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.circle.blue {
    background-color: #396AFF;
}

.circle:hover {
    background-color: #396AFF;
}

.dashed-circle {
    position: absolute;
    width: 2.7rem;
    height: 2.7rem;
    border: 2px dashed #000;
    border-radius: 50%;
    z-index: 0;
}



@media (max-width: 992px) {
    .circle {
        width: 1rem;
        height: 1rem;
    }
    
    .dashed-circle {
        width: 1.5rem;
        height: 1.5rem;
    }

    .line-container {
        height: 4rem;
    }

    .feature-title h3 {
        font-size: 24px;
        line-height: 36px;
    }

    .feature p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .phone-container {
        display: none;
    }

    .circle {
        width: 1rem;
        height: 1rem;
    }
    
    .dashed-circle {
        width: 1.5rem;
        height: 1.5rem;
    }

    .line-container {
        height: 4rem;
    }

    .feature-title h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .feature p {
        font-size: 14px;
        line-height: 21px;
        text-wrap: wrap;
    }
}

@media (width: 1024px) {
    .feature-title h3 {
        font-size: 25px;
        line-height: 30px;
    }

    .feature p {
        font-size: 12px;
        line-height: 21px;
        text-wrap: wrap;
    }
}

@media (width: 425px) {
    .feature-title h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .feature p {
        font-size: 10px;
        line-height: 21px;
        text-wrap: wrap;
    }
}