/* ===============================
   VET BOOKR SECTION
=================================*/
.vetbookr-section {
    display: flex;
    width: 100%;
    min-height: 100vh;
    align-items: stretch; /* Ensures image and content height match */
    background: #ffffff; /* Unified white background */
}

/* Image Side */
.vet-image-side {
    flex: 1;
}

.vet-image-side img {
    width: 100%;
    height: 86%;
    object-fit: cover;
    display: block; /* Removes tiny gap at bottom */
    padding-top: 100px;
    padding-left: 50px;
    
}

/* Content Side */
.vet-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content vertically */
    padding: 5% 8%; /* Fluid padding for better alignment */
    background: transparent; /* Removes the "card" look */
}

/* Logo & Title Centering */
.vet-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.vet-logo {
    width: 180px;
    height: auto;
    margin: 0 auto 1rem auto;
    display: block;
}

.vet-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111;
    margin: 0;
}

/* Description Text */
.vet-description h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #333;
}

.vet-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    max-width: 600px; /* Prevents lines from getting too long */
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .vet-title { font-size: 1.8rem; }
    .vet-content-side { padding: 3rem; }
}

@media (max-width: 768px) {
    .vetbookr-section {
        flex-direction: column;
    }
    .vet-image-side {
        height: 400px;
    }
    .vet-content-side {
        padding: 2.5rem 1.5rem;
    }
}