
        .bangalorecafe-contactpage-header {
            height: 400px;
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                              url('https://images.unsplash.com/photo-1552566626-52f8b828add9?w=1600&h=400&fit=crop');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            position: relative;
        }

        .bangalorecafe-contactpage-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            letter-spacing: 2px;
        }

        .bangalorecafe-contactpage-header p {
            font-size: 1.3rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
        }

        .bangalorecafe-contactpage-container {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .bangalorecafe-contactpage-content {
            display: flex;
            gap: 50px;
            margin-bottom: 60px;
        }

        .bangalorecafe-contactpage-form-section {
            flex: 1;
        }

        .bangalorecafe-contactpage-form-section h2 {
            font-size: 2.5rem;
            color: #f4b942;
            margin-bottom: 20px;
            border-bottom: 3px solid #d4a057;
            padding-bottom: 10px;
        }

        .bangalorecafe-contactpage-form {
            background-color: #f9f5f0;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .bangalorecafe-contactpage-form-group {
            margin-bottom: 20px;
        }

        .bangalorecafe-contactpage-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #5a2d1f;
        }

        .bangalorecafe-contactpage-form-group input,
        .bangalorecafe-contactpage-form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #d4a057;
            border-radius: 5px;
            font-family: 'Georgia', serif;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .bangalorecafe-contactpage-form-group input:focus,
        .bangalorecafe-contactpage-form-group textarea:focus {
            outline: none;
            border-color: #5a2d1f;
        }

        .bangalorecafe-contactpage-form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .bangalorecafe-contactpage-submit-btn {
            background-color: #5a2d1f;
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
        }

        .bangalorecafe-contactpage-submit-btn:hover {
            background-color: #7a3d2f;
        }

        .bangalorecafe-contactpage-info-section {
            flex: 1;
        }

        .bangalorecafe-contactpage-info-section h2 {
            font-size: 2.5rem;
            color: #f4b942;
            margin-bottom: 20px;
            border-bottom: 3px solid #d4a057;
            padding-bottom: 10px;
        }

        .bangalorecafe-contactpage-info-card {
            background-color: #f9f5f0;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .bangalorecafe-contactpage-info-item {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #d4a057;
        }

        .bangalorecafe-contactpage-info-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .bangalorecafe-contactpage-info-item h3 {
            color: #5a2d1f;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .bangalorecafe-contactpage-info-item p {
            color: #555;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .bangalorecafe-contactpage-map-section {
            margin-top: 60px;
        }

        .bangalorecafe-contactpage-map-section h2 {
            font-size: 2.5rem;
            color: #f4b942;
            margin-bottom: 20px;
            text-align: center;
            border-bottom: 3px solid #d4a057;
            padding-bottom: 10px;
            display: inline-block;
            width: 100%;
        }

        .bangalorecafe-contactpage-map {
            width: 100%;
            height: 450px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .bangalorecafe-contactpage-footer {
            background-color: #5a2d1f;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 80px;
        }

        .bangalorecafe-contactpage-success-message {
            display: none;
            background-color: #4caf50;
            color: white;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            text-align: center;
        }

        @media (max-width: 968px) {
            .bangalorecafe-contactpage-content {
                flex-direction: column;
            }

            .bangalorecafe-contactpage-header h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 600px) {
            .bangalorecafe-contactpage-header {
                height: 300px;
            }

            .bangalorecafe-contactpage-header h1 {
                font-size: 2rem;
            }

            .bangalorecafe-contactpage-header p {
                font-size: 1rem;
            }

            .bangalorecafe-contactpage-form-section h2,
            .bangalorecafe-contactpage-info-section h2,
            .bangalorecafe-contactpage-map-section h2 {
                font-size: 2rem;
            }

            .bangalorecafe-contactpage-map {
                height: 300px;
            }
        }