/* About Us Preview */
.about-us-preview{
    position: relative;
}

.content-two-column {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.content-two-column .text-content,
.content-two-column .image-content {
    flex: 1;
    min-width: 400px; /* Ensures responsiveness */
}

.content-two-column .image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-us-preview .text-content .section-title {
    text-align: left;
    margin-left: 0;
    padding-bottom: 0;
}

.about-us-preview .text-content .section-title::after {
    left: 0;
    transform: translateX(0);
}

.second-para{
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-us-preview .text-content{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .content-two-column .image-content {
        order: -1; /* Image appears above text on smaller screens */
    }

    .about-us-preview .text-content .section-title {
        text-align: center;
        margin: 0 auto 20px;
    }

    .about-us-preview .text-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .content-two-column .text-content,
    .content-two-column .image-content {
        min-width: 300px; /* Ensures responsiveness */
    }
}