.vision-section {
    position: relative;
    background-color: #FFFFFF; /* Pure white background */
    overflow: hidden;
    padding: 80px 0; /* Breathing room top and bottom */
}

.vision-container {
    display: flex;
    align-items: stretch;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    min-height: 480px;
}

/* Right Side: Image */
.vision-image-wrapper {
    flex: 0 0 400px; /* Fixed maximum width instead of percentage */
    max-width: 100%;
    height: 500px;
    display: flex;
    align-items: flex-end; /* Anchor image to the bottom */
    justify-content: center;
    background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%); /* Subtle studio backdrop */
    border-radius: 20px;
    margin: 40px auto; 
    overflow: hidden;
    border: 8px solid #FFFFFF; /* Thick white frame */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); /* Shadow to make the frame pop */
}

.vision-img {
    width: 100%;
    max-height: 100%;
    object-fit: contain; /* Show the WHOLE image without cropping */
    object-position: bottom center; /* Rest shoulders on the bottom */
    display: block;
}

/* Left Side: Text Box */
.vision-text-box {
    width: 55%;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vision-eyebrow {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #64748B;
    margin-bottom: 8px;
}

.vision-text-box h2 {
    font-size: 48px; /* Robust font size */
    color: var(--text-dark, #1E293B);
    margin-bottom: 24px;
}

.vision-text-box p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 90%;
}

.vision-credentials {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vision-cred-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vision-cred-icon {
    width: 20px;
    height: 20px;
    color: var(--color-cyan, #07B8A6);
    flex-shrink: 0;
}

.vision-cred-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark, #1E293B);
}

@media (max-width: 1024px) {
    .vision-container {
        flex-direction: column-reverse;
        gap: 40px;
        padding: 0 32px;
    }
    .vision-image-wrapper {
        width: 100%;
        height: 400px;
        margin: 0;
    }
    .vision-text-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .vision-section {
        padding: 50px 0;
    }
    .vision-container {
        padding: 0 16px;
        gap: 24px;
    }
    .vision-text-box h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    .vision-text-box p {
        font-size: 14.5px;
        line-height: 1.6;
        max-width: 100%;
    }
    .vision-image-wrapper {
        height: 320px;
        flex: 0 0 auto;
        border-width: 4px;
        border-radius: 16px;
    }
}
