.vet-background {
    background-image: url("../upload/vetSuperBig.png");
	background-color: #cfdd7b; /* Set the background color */
    background-size: contain; /* Ensures the image is fully visible */
    background-position: center center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    width: 100%; /* Ensures the section spans the full width */
    height: 100vh; /* Full viewport height */
    min-height: 400px; /* Sets a minimum height */
}

@media (max-width: 1024px) {
    .vet-background {
        height: 60vh; /* Adjust height for tablets */
    }
}

@media (max-width: 768px) {
    .vet-background {
        height: 50vh; /* Adjust height for mobile screens */
    }
}