/* Machine Learning Section - Business Operations Support Page */
.ml-section {
    background-color: var(--color-white);
    padding: 100px 0;
}

.ml-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.ml-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ml-image-container {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.ml-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.ml-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ml-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text-primary);
    margin: 0;
}

.ml-title .highlight-text {
    color: var(--color-primary);
}

.ml-description {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin: 0;
}

.ml-description + .ml-description {
    margin-top: 0;
}

.ml-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 0;
}

.ml-service-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background-color: var(--color-bg-cyan-light);
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ml-service-item:hover {
    background-color: var(--color-bg-cyan-tint);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(77, 208, 225, 0.2);
}

.ml-service-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    border-radius: 50%;
    color: var(--color-primary);
}

.ml-service-icon svg {
    width: 20px;
    height: 20px;
}

.ml-service-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ml-section {
        padding: 80px 0;
    }

    .ml-wrapper {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .ml-section {
        padding: 60px 0;
    }

    .ml-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .ml-visual {
        order: -1;
    }

    .ml-content {
        text-align: center;
        align-items: center;
    }

    .ml-title {
        text-align: center;
    }

    .ml-description {
        text-align: center;
    }

    .ml-services {
        justify-content: center;
    }

    .ml-image-container {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .ml-section {
        padding: 50px 0;
    }

    .ml-wrapper {
        gap: 30px;
        margin-bottom: 30px;
    }

    .ml-content {
        gap: 20px;
    }

    .ml-title {
        font-size: 28px;
    }

    .ml-description {
        font-size: 16px;
    }

    .ml-services {
        gap: 12px;
    }

    .ml-service-item {
        padding: 10px 20px;
        gap: 10px;
    }

    .ml-service-icon {
        width: 32px;
        height: 32px;
    }

    .ml-service-icon svg {
        width: 18px;
        height: 18px;
    }

    .ml-service-text {
        font-size: 14px;
    }

    .ml-image-container {
        border-radius: 16px;
    }
}

