.section-2-container {
    flex-direction: column;
    align-items: center;
    text-align: justify;
    gap: 0;
    margin: 30px 0 0 0;
}

.section-2-image-block {
    flex: 1;
    min-width: 220px; /* Ensures the image block has space */
    text-align: center; /* This centers the h3/h4 and the image block */
}

.section-2-img {
    width: 80%;
    max-width: 100%; /* Controls max size on large screens */
    height: 100%;
    object-fit: cover; /* Prevents image from stretching */
    border-radius: 8px; /* The square-ish look */
    margin: 0 auto 0 auto; /* Centers the image */
    display: block;
}

.section-2-image-block h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.section-2-image-block h4 {
    font-size: 1rem;
    color: #555;
    margin-top: 0;
    font-weight: 500;
}

.section-2-info-block {
    flex: 2; /* Takes up twice the space of the image block */
    min-width: 300px; /* Helps with responsive wrapping */
}