/* Container Styling */
.about-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Section Headers */
.about-section-heading {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

/* Text Blocks */
.about-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
    text-align: justify;
}

/* Flexbox Layout for Use Cases */
.use-case {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
}

.use-case:nth-child(even) {
    flex-direction: row-reverse; /* Alternate the image position */
}

/* Image Styling */
.use-case img {
    width: 50%;
    height: auto;
    border-radius: 8px;
    margin: 0 1.5rem;
}

/* Text Styling for Use Case */
.use-case-text {
    width: 50%;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    text-align: justify;
}

/* Responsive Design for Small Screens */
@media (max-width: 768px) {
    .use-case {
        flex-direction: column;
    }

    .use-case img,
    .use-case-text {
        width: 100%;
        margin: 1rem 0;
    }
}
