/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
  }
  
  /* Header Styles */
  .header {
    background-color: #121212;
    padding: 10px 20px;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
  }
  
  .nav-links li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: #00cc80;
  }
  
  /* Terms of Service Container */
  .terms-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  
  .terms-container h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #121212;
  }
  
  .terms-container p {
    margin-bottom: 15px;
  }
  
  .terms-section h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #00cc80;
  }
  
  .terms-section a {
    color: #00cc80;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .terms-section a:hover {
    color: #00995e;
  }
  
  /* Footer Styles */
  .footer {
    background-color: #121212;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
  }
  
  .footer-nav a {
    color: #00cc80;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
  }
  
  .footer-nav a:hover {
    color: #00995e;
  }
  
  /* General Form Styles */
.contact-form-container {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
    font-family: 'Arial', sans-serif;
  }
  
  .contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
  }
  
  .contact-form-container p {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: center;
    color: #555;
  }
  
  /* Form Fields */
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    display: block;
    font-size: 1rem;
    color: #444;
    margin-bottom: 5px;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #fff;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #00cc80;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 204, 128, 0.3);
  }
  
  textarea {
    resize: vertical;
  }
  
  /* Submit Button */
  .submit-button {
    background-color: #00cc80;
    color: #fff;
    font-size: 1.1rem;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .submit-button:hover {
    background-color: #00995e;
    transform: scale(1.02);
  }
  
  /* Form Container Alignment */
  .contact-section {
    padding: 50px 15px;
    background-color: #ffffff;
  }
  
  /* Additional Contact Info */
  .contact-info {
    margin-top: 30px;
    text-align: center;
  }
  
  .contact-info h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .contact-info p {
    font-size: 1rem;
    color: #555;
  }
  
  .contact-info a {
    color: #00cc80;
    text-decoration: none;
    font-weight: bold;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  .social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }
  
  .social-links li a {
    font-size: 1.1rem;
    color: #333;
    transition: color 0.3s ease;
  }
  
  .social-links li a:hover {
    color: #00cc80;
  }
  