 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #fff;
      color: #000;
      line-height: 1.6;
    }

    /* Container for all content */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Hero Section */
    .hero {
      position: relative;
      background:  url('cricket.png') no-repeat center center/cover;
      background-attachment: fixed;
      height: 85vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .hero-content {
      display: flex;
      justify-content: flex-end;
      padding: 40px;
    }

    .hero h1 {
      color: #fff;
      font-size: 4rem;
      text-transform: lowercase;
      text-align: right;
      line-height: 1;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    /* Disclaimer at bottom of hero - NO BACKGROUND */
    .disclaimer {
      color: #fff; /* White text for contrast against dark background */
      font-size: 0.75rem;
      padding: 15px 25px;
      line-height: 1.6;
      text-align: center;
    }

    /* Main content */
    .main-content {
      padding: 40px 0;
    }

    .contact-info {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 40px;
    }

    .contact-method {
      flex: 1;
      min-width: 250px;
      padding: 20px;
      background: #f9f9f9;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .contact-method i {
      font-size: 2.5rem;
      color: #000;
      margin-bottom: 15px;
    }

    .contact-method h3 {
      margin-bottom: 10px;
      font-size: 1.5rem;
    }

    /* WhatsApp Button */
    .whatsapp {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 10px -40px;
    }

    .whatsapp a {
      display: flex;
      align-items: center;
      gap: 12px;
      background: #000;
      color: #fff;
      text-decoration: none;
      padding: 16px 32px;
      border-radius: 50px;
      font-size: 1.4rem;
      font-weight: bold;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .whatsapp a:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
      background: #075e54;
    }

    .whatsapp img {
      width: 40px;
      height: 40px;
    }

    .whatsapp span {
      color: #00e676;
    }

    /* Footer Note */
    .footer-note {
      text-align: center;
      font-size: 0.9rem;
      padding: 20px;
      color: #555;
      background: #f1f1f1;
      border-top: 1px solid #ddd;
    }

    /* Mobile Responsive Styles */
    @media (max-width: 768px) {
      .hero {
        height: 75vh;
      }
      
      .hero-content {
        padding: 20px;
        justify-content: center;
      }
      
      .hero h1 {
        font-size: 2.8rem;
        text-align: center;
      }

      .disclaimer {
        font-size: 0.7rem;
        padding: 12px 15px;
      }

      .main-content {
        padding: 30px 0;
      }
      
      .contact-method {
        min-width: 100%;
      }

      .whatsapp a {
        font-size: 1.1rem;
        padding: 14px 25px;
      }

      .whatsapp img {
        width: 32px;
        height: 32px;
      }
    }

    @media (max-width: 480px) {
      .hero {
        height: 70vh;
      }
      
      .hero h1 {
        font-size: 2.2rem;
      }
      
      .disclaimer {
        font-size: 0.65rem;
        padding: 10px 12px;
      }
      
      .whatsapp a {
        flex-direction: row;
        gap: 8px;
        text-align: center;
        padding: 12px 16px;
      }
      
      .contact-method i {
        font-size: 2rem;
      }
      
      .contact-method h3 {
        font-size: 1.3rem;
      }
    }