/* Specific styles for process monitoring page */
.section {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.section.left {
    flex-direction: row;
}

.section.right {
    flex-direction: row-reverse;
}

.section img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    margin: 0 20px;
}

.section div {
    flex: 1;
}

.section p {
    font-size: 1.2em;
    line-height: 1.5em;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .section {
        flex-direction: column;
        text-align: center;
    }

    .section.left img,
    .section.right img {
        margin: 20px 0;
    }

    .section.left p,
    .section.right p {
        margin: 20px 0;
    }
}

.small-image {
    max-width: 150px;  /* Ensure images are smaller to match content */
    max-height: 200px;
}

