body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: url('Images/backg4.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
  }
  
  .gst-hero {
    text-align: center;
    padding: 80px 20px 40px;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .gst-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
  }
  
  .gst-hero p {
    font-size: 20px;
    color: #ffd32a;
  }
  
  .features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    gap: 20px;
  }
  
  .feature-box {
    flex: 1 1 280px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #00cec9;
    transition: transform 0.3s ease;
  }
  
  .feature-box:hover {
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.15);
  }
  
  .feature-box h3 {
    color: #00cec9;
    margin-bottom: 10px;
  }
  
  .feature-box p {
    font-size: 15px;
    color: #eee;
  }
  
  .form-section {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
  }
  
  .form-section h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #81ecec;
  }
  
  label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    border: none;
    background-color: #f1f1f1;
    color: black;
  }
  
  button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #00cec9;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #00b2b0;
  }
  