  /* Simple Container */
  .simple-banner-container {
    display: flex;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    height: 420px;
    /* Increased height for better zoom compatibility */
    border: 1px solid #eaeaea;
}

/* Left Image Section (70%) */
.simple-banner-image {
    flex: 0 0 70%;
    background: #f8f9fa;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Right Content Section (30%) with safe spacing */
.simple-banner-content {
    flex: 0 0 30%;
    padding: 30px 25px;
    /* Increased padding for zoom */
    background: #ffffff;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #f0f0f0;
    min-height: 100%;
    box-sizing: border-box;
}

/* Safe content wrapper */
.content-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* Image Styling for 1200x800 images */
.banner-full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    display: block;
}

/* Image container to ensure full display */
.image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Carousel Styling */
#simpleBannerCarousel {
    width: 100%;
    height: 100%;
}

#simpleBannerCarousel .carousel-inner,
#simpleBannerCarousel .carousel-item {
    width: 100%;
    height: 100%;
}

/* Simple indicators */
#simpleBannerCarousel .carousel-indicators {
    bottom: 20px;
    /* Increased spacing from bottom */
    margin: 0;
}

#simpleBannerCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

#simpleBannerCarousel .carousel-indicators button.active {
    background-color: #ffffff;
    border-color: #ffffff;
}

/* Carousel Controls */
#simpleBannerCarousel .carousel-control-prev,
#simpleBannerCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

#simpleBannerCarousel:hover .carousel-control-prev,
#simpleBannerCarousel:hover .carousel-control-next {
    opacity: 1;
}

#simpleBannerCarousel .carousel-control-prev {
    left: 20px;
    /* Increased spacing from edges */
}

#simpleBannerCarousel .carousel-control-next {
    right: 20px;
    /* Increased spacing from edges */
}

#simpleBannerCarousel .carousel-control-prev-icon,
#simpleBannerCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Content Section Styling with zoom-safe spacing */
.content-subtitle {
    color: #3498db;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding-top: 5px;
    /* Extra top padding */
}

.content-title {
    color: #2c3e50;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    padding-right: 5px;
    /* Prevents text touching edge */
}

.content-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    padding-right: 5px;
    /* Prevents text touching edge */
    overflow-y: auto;
    /* Allows scrolling if text is too long */
    max-height: 120px;
    /* Limits height for zoom compatibility */
}

/* Scrollbar styling for content text */
.content-text::-webkit-scrollbar {
    width: 4px;
}

.content-text::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 2px;
}

.content-text::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 2px;
}

/* Features List with safe margins */
.content-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.content-features li {
    padding: 9px 0;
    color: #444;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.content-features li i {
    color: #27ae60;
    margin-right: 12px;
    font-size: 0.95rem;
    min-width: 20px;
    /* Prevents icon shrinking */
}

/* Button Container with safe spacing */
.button-container {
    margin-top: auto;
    /* Pushes button to bottom */
    padding: 15px 0 5px 0;
    /* Top and bottom padding */
    width: 100%;
}

/* Button with safe margins */
.simple-btn {
    background: #1e8a78;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    /* Safe minimum distance from edges */
    min-height: 44px;
    /* Accessibility: minimum touch target size */
}

.simple-btn:hover {
    background: #2eae98;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.simple-btn:active {
    transform: translateY(0);
}

.simple-btn i {
    margin-right: 8px;
}

/* Responsive Design with zoom-safe adjustments */
@media (max-width: 1200px) {
    .simple-banner-container {
        height: 400px;
    }

    .simple-banner-content {
        padding: 25px 20px;
    }

    .content-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .simple-banner-container {
        flex-direction: column;
        height: auto;
        min-height: 600px;
        /* Minimum height for mobile */
    }

    .simple-banner-image,
    .simple-banner-content {
        flex: 0 0 100%;
    }

    .simple-banner-image {
        height: 320px;
        /* Fixed height for mobile */
        padding: 20px;
        /* Increased padding for zoom */
    }

    .simple-banner-content {
        padding: 25px;
        border-left: none;
        border-top: 1px solid #f0f0f0;
        min-height: 350px;
        /* Ensures enough space for content */
    }

    .content-title {
        font-size: 1.5rem;
    }

    .content-text {
        max-height: none;
        /* Remove height limit on mobile */
        margin-bottom: 20px;
    }

    .button-container {
        padding: 20px 0 10px 0;
        /* Extra padding on mobile */
    }
}

@media (max-width: 768px) {
    .simple-banner-container {
        border-radius: 8px;
    }

    .simple-banner-image {
        height: 280px;
        padding: 15px;
    }

    .simple-banner-content {
        padding: 20px;
    }

    .content-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .content-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    #simpleBannerCarousel .carousel-control-prev,
    #simpleBannerCarousel .carousel-control-next {
        opacity: 0.7;
        /* Always show on mobile */
        width: 36px;
        height: 36px;
    }

    .simple-btn {
        padding: 11px 18px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .simple-banner-image {
        height: 240px;
        padding: 12px;
    }

    .simple-banner-content {
        padding: 18px 15px;
    }

    .content-title {
        font-size: 1.3rem;
    }

    .content-subtitle {
        font-size: 0.9rem;
    }

    .content-features li {
        font-size: 0.9rem;
        padding: 8px 0;
    }

    .simple-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .button-container {
        padding: 15px 0 8px 0;
    }
}

/* Extra zoom level support */
@media (max-width: 360px) {
    .simple-banner-container {
        border-radius: 6px;
    }

    .simple-banner-image {
        height: 220px;
        padding: 10px;
    }

    .simple-banner-content {
        padding: 15px 12px;
    }

    .content-title {
        font-size: 1.2rem;
    }

    .content-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .simple-btn {
        padding: 9px 12px;
        font-size: 0.85rem;
    }
}

/* High zoom level specific adjustments (110% - 150%) */
@media (min-width: 993px) and (max-width: 1200px) {
    .simple-banner-content {
        padding: 28px 22px;
        /* Extra padding for zoomed-in desktop */
    }

    .button-container {
        padding: 18px 0 8px 0;
        /* Extra bottom padding */
    }
}