  .banner-card {
            display: flex;
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 10px;
            overflow: hidden;
            width: 80%;
            max-width: 1000px;
        }

        .banner-card-image {
            width: 33.33%;
            object-fit: cover;
        }

        .banner-card-info {
          line-height: 2;
            padding: 20px;
            color: #333;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .banner-card-info h2 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .banner-card-info p {
            margin-bottom: 5px;
        }

        @media (max-width: 767px) {
            .banner-card {
                flex-direction: column;
            }

            .banner-card-image {
                width: 100%;
                height: 200px;
            }
        }