/**
 * About Info Block Styles
 */
.about-info-block {
    padding: 60px 0;
    background-color: #fff;
}

.about-info-container {
    width: 85%;
    max-width: 85%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}


.about-info-image {
    flex: 1 1 500px; /* Adjust basis as needed, ensuring it takes roughly half */
    max-width: 50%;
}

.about-info-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Rounded corners like in the screenshot */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-info-content {
    flex: 1 1 500px;
    max-width: 50%;
    color: #333;
}

.about-info-text {
    margin-bottom: 20px;
}

.about-info-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.about-info-text:last-child {
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-info-container {
        flex-direction: column;
        gap: 30px;
    }

    .about-info-image, 
    .about-info-content {
        max-width: 100%;
        flex: 1 1 100%;
    }
}
