/* Back Button */


/* <uniquifier>: Use a unique and descriptive class name */
/* <weight>: Use a value from 100 to 700 */

/*body {
  font-family: "Roboto Mono", serif;
  font-optical-sizing: auto;
  font-weight:100;
  font-style: normal;
}*/

.back-button {
    top: 20px; /* Adjust as needed */
    left: 20px;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    transition: background 0.3s ease;
  }
  
  .back-button:hover {
    background: linear-gradient(135deg, #2575fc, #6a11cb);
  }
  
  /* Content Section */
  .content {
    background: white;
    
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
  }
  
  .content h2 {
    font-size: 1.3rem;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  .content p, .content ul, .content ol {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .content ul, .content ol {
    padding-left: 20px;
  }
  
  .content a {
    color: #2575fc;
    text-decoration: none;
    font-weight: bold;
  }
  
  .content a:hover {
    text-decoration: underline;
  }

  #why{
    font-family:" Lexend Giga";
  }

  .contact-us-button {
    position: fixed;
    top: 20px; /* Adjust as needed */
    right: 20px; /* Adjust as needed */
    background: linear-gradient(135deg, #6a11cb, #2575fc); /* Gradient for appeal */
    color: white;
    text-align: center;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Ensure it stays above other elements */
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-us-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

#info {
  margin-top: 20px;
  padding: 10px;
  color: #555;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
}