    /* Scoped styles for the Contact Us box */
    .contact-box {
       max-width: 900px;
      margin: 0 auto;
      padding: 20px;
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .contact-box body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f4f4f4;
    }


    .contact-box h1 {
      text-align: center;
      color: #333;
    }

    .contact-box .chat-intro {
      text-align: center;
      margin-top: 20px;
    }

    .contact-box .chat-intro h2 {
     color: #555;
    }
    
    

    .contact-box .chat-intro ul {
       list-style-type: disc;
      padding-left: 20px;
      text-align: left;
    }


    .contact-box .btn {
      display: inline-block;
      margin-top: 20px;
      padding: 10px 20px;
      font-size: 16px;
      background-color: #002B5C;
      color: #fff;
      text-align: center;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      text-decoration: none;
    }


    .contact-box .btn:hover {
      background-color: #004080;
    }
