/* Point Section Styling Web */
.point-section h2 {
    font-size: 2.3rem;
    font-weight: bold;
    padding-top: 50px;
    padding-bottom: 70px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-in-out forwards;
}

.point-section .row {
    display: flex;
    flex-wrap: wrap;
}

.point-item {
    margin-bottom: 50px;
    text-align: left;
    padding-right: 50px;
    align-items: stretch;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-in-out forwards;
    animation-delay: 0.3s;
}

.point-item .point-text p {
    font-size: 1rem;
    color: #000000;
    flex-grow: 1;
    align-items: stretch;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(1rem * 1.5 * 4);
    line-height: 1.5;
}

.point-text {
    flex-grow: 1;
}

.point-icon {
    background-color: #F16A23;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-top: -10px;
    align-self: flex-start;
}

.point-icon i {
    color: #ffffff;
    font-size: 24px;
}

.point-item .point-icon {
    flex-shrink: 0;
}

.point-item .point-text h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(1.2rem * 1.5 * 2);
    line-height: 1.5;
}

.point-item .point-text p {
    font-size: 1rem;
    color: #000000;
    flex-grow: 1;
    align-items: stretch;
    line-height: 1.5;
    overflow: visible;
    display: block;
    white-space: normal;
}

.point-text hr {
    width: calc(100% + 50px);
    margin-left: -50px;
    border-width: 2px;
    margin-top: 40px;
    margin-bottom: 0px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Point Section Styling Mobile */
@media (max-width: 768px) {
    .point-section h2 {
        font-size: 1.5rem;
        font-weight: bold;
        padding-top: 30px;
        padding-bottom: 50px;
        text-align: left;
        padding-left: 10px;
    }

    .point-item {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        text-align: left;
        padding-right: 15px;
        flex-direction: row;/
    }

    .point-icon {
        width: 35px;
        height: 30px;
        margin-right: 10px;
        margin-top: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .point-icon i {
        font-size: 18px;
    }

    .point-text h3 {
        font-size: 1.2rem;
        font-weight: bold;
        display: inline-block;
    }

    .point-item .point-text p {
        font-size: 1rem;
        line-height: 1.4;
        overflow: visible;
        display: block;
        text-overflow: initial;
        -webkit-line-clamp: unset;
        white-space: normal;
        margin-top: 0px;
    }

    .point-text hr {
        width: 100%;
        margin-left: 0;
        border-width: 1px;
        margin-top: -5px;
    }

    .point-section .row {
        flex-direction: column;
        align-items: flex-start;
    }

    .point-item .point-text h3 {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 0px;
    }
}
