
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        body {
            color: #333;
            background-color: #f7f6f2;
        }
        
        /* Header with Hero Image */
        .coffee-hero {
            position: relative;
            width: 100%;
            height: 110vh;
            margin-top: -40px !important;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .coffee-hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

         @media (max-width: 768px) {
            .coffee-hero-image {
                object-position: 30% center;
            }
        }
        
        .coffee-hero-content {
            text-align: center;
            color: white;
            z-index: 1;
            max-width: 800px;
            padding: 20px;
        }
        
        .coffee-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
            font-weight: 100;
            letter-spacing: 1px;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.3);
            z-index: 0;
        }
        
        /* Common Section Styles */
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }
        
        .section-subtitle {
            color: #c19a6b;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        
        .section-title {
            font-size: 2.2rem;
            font-weight: 200;
            margin-bottom: 30px;
            color: #222;
            line-height: 1.2;
        }
        
        .section-description {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
        }
        
        /* Coffee Experience Section */
        .experience-section {
            background-color: white;
            padding: 80px 0;
        }
        
        .experience-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }
        
        .experience-card {
            background: #f7f6f2;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .experience-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .experience-image {
            height: 250px;
            overflow: hidden;
        }
        
        .experience-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .experience-card:hover .experience-image img {
            transform: scale(1.1);
        }
        
        .experience-content {
            padding: 30px;
            text-align: center;
        }
        
        .experience-icon {
            color: #c19a6b;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .experience-title {
            font-size: 1.5rem;
            font-weight: 200;
            margin-bottom: 15px;
            color: #222;
        }
        
        /* Lounge Description Section */
        .lounge-description {
            background-color: #E3D9D2;
            padding: 80px 0;
            text-align: center;
        }
        
        .lounge-description .section-description {
            max-width: 800px;
            margin: 0 auto;
        }

        .coffee-btn {
            display: inline-block !important;
            padding: 12px 30px !important;
            background-color: #c19a6b !important;
            color: white !important;
            text-decoration: none !important;
            font-size: 18px  !important;
            font-weight: 200 !important;
            border-radius: 30px !important;
            transition: all 0.3s ease !important;
            letter-spacing: 0.5px !important;
            text-transform: uppercase !important;
        }
        
        .coffee-btn:hover {
            background-color: #a67c52 !important;
            transform: translateY(-3px) !important;
            color: white !important;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .experience-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
        }
        
        @media (max-width: 768px) {
            .coffee-hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        /* Round WhatsApp Button */
    .whatsapp-float {
      position: fixed;
      bottom: 25px;
      right: 18px;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 28px;
      z-index: 999;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none !important;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .whatsapp-icon {
      color: white;
    }


    @media (max-width: 768px) {
      .whatsapp-float {
        bottom: 20px;
        right: 18px;
        width: 50px;
        height: 50px;
        font-size: 24px;
        padding: 12px;
      }
    }
    