
        .bangalore-cafe-about-header {
            height: 400px;
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                              url('../assets/banner/ban3.png');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            position: relative;
        }

        .bangalore-cafe-about-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            letter-spacing: 2px;
        }

        .bangalore-cafe-about-header p {
            font-size: 1.3rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
        }

        .bangalore-cafe-about-container {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .bangalore-cafe-about-content {
            display: flex;
            gap: 50px;
            align-items: center;
        }

        .bangalore-cafe-about-text {
            flex: 1;
            padding-right: 20px;
        }

        .bangalore-cafe-about-text h2 {
            font-size: 2.5rem;
            color: #f4b942;
            margin-bottom: 20px;
            border-bottom: 3px solid #d4a057;
            padding-bottom: 10px;
        }

        .bangalore-cafe-about-text h3 {
            font-size: 1.8rem;
            color: #f4b942;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .bangalore-cafe-about-text p {
            font-size: 1.1rem;
            margin-bottom: 15px;
            text-align: justify;
            color: #ffffffff;
        }

        .bangalore-cafe-about-image {
            flex: 1;
            position: relative;
        }

        .bangalore-cafe-about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .bangalore-cafe-about-highlight {
            background-color: #f9f5f0;
            padding: 20px;
            border-left: 4px solid #d4a057;
            margin: 30px 0;
            font-style: italic;
            color: black;
        }

        .bangalore-cafe-about-footer {
            background-color: #f4b942;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 80px;
        }

        @media (max-width: 968px) {
            .bangalore-cafe-about-content {
                flex-direction: column-reverse;
            }

            .bangalore-cafe-about-text {
                padding-right: 0;
            }

            .bangalore-cafe-about-header h1 {
                font-size: 2.5rem;
            }

            .bangalore-cafe-about-image img {
                height: 400px;
            }
        }

        @media (max-width: 600px) {
            .bangalore-cafe-about-header {
                height: 300px;
            }

            .bangalore-cafe-about-header h1 {
                font-size: 2rem;
            }

            .bangalore-cafe-about-header p {
                font-size: 1rem;
            }

            .bangalore-cafe-about-text h2 {
                font-size: 2rem;
            }

            .bangalore-cafe-about-image img {
                height: 300px;
            }
        }