/* Contact Form Styles */
#contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 8px;
    background: transparent;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    font-size: 1rem;
    font-weight: bold;
    color: white;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #ffffff00;
    box-sizing: border-box;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #666;
    outline: none;
  }
  
  .submit-button {
    padding: 6px 10px;
    background-color: #4caf4f55;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .submit-button:hover {
    background-color: #666;
    color:black
  }
  
  .submit-button:active {
    background-color: #388e3c;
  }
  
  /* Links Styling */
  a {
    
    text-decoration: none;
   
  }
  
  a:hover {
    text-decoration: underline;
  }
  