/* About Service Section */
.about-service {
    min-height: 349px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.about-service-container {
    max-width: 1440px;
    width: 100%;
    padding: 0 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.about-service-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 290px;
    height: 48px;
    background: linear-gradient(90deg, #E62D5B 0%, #60C6C8 100%);
    border-radius: 100px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
    text-align: center;

    /* Prevent text selection and interaction */
    user-select: none;
    pointer-events: none;
}

.about-service-title {
    width: 100%;
    max-width: 1320px;
    min-height: 162px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Cal Sans';
    font-style: normal;
    font-weight: 400;
    ;
    font-size: 36px;
    line-height: 150%;
    text-align: center;
    color: #000000;
    /* Default color for unmatched text */

    /* Ensure proper text flow as a paragraph */
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .about-service-container {
        padding: 0 30px;
    }

    .about-service-title {
        max-width: 100%;
        font-size: 32px;
        line-height: 140%;
    }

    .about-service-button {
        width: auto;
        min-width: 297px;
        height: 48px;
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .about-service {
        height: auto;
        margin-bottom: -10px;
    }

    .about-service-container {
        padding: 0 20px;
        gap: 30px;
    }

    .about-service-title {
        font-size: 28px;
        line-height: 140%;
        min-height: 120px;
    }

    .about-service-button {
        width: auto;
        height: 44px;
        font-size: 16px;
        padding: 10px 16px;
    }
}

@media screen and (max-width: 480px) {
    .about-service {
        height: auto;
    }

    .about-service-container {
        padding: 0 15px;
        gap: 24px;
    }

    .about-service-title {
        font-size: 24px;
        line-height: 140%;
        min-height: 100px;
    }

    .about-service-button {
        width: auto;
        height: 42px;
        font-size: 16px;
        padding: 8px 14px;
    }
}