/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f9f9;
    color: #333;
  }
  
  /* Hero Section */
  .hero {
    background: url('hero-dark.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    text-align: center;
  }
  
  .hero-content {
    margin: auto;
    padding: 20px;
  }
  
  .hero-content h1 {
    font-size: 2.5em;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  }
  
  .hero-content p {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  }
  
  /* Navigation Bar */
  nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 100;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 1.2em;
  }
  
  nav a:hover {
    color: #1a73e8;
    transition: color 0.3s ease;
  }
  
  /* Hamburger Menu Styles */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin: 10px;
  }
  
  .menu-toggle .bar {
    background: white;
    height: 3px;
    width: 25px;
    margin: 3px 0;
  }
  
  .nav-links {
    display: flex;
    justify-content: center;
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: flex;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      background: rgba(0, 0, 0, 0.8);
      position: absolute;
      top: 50px;
      left: 0;
      width: 100%;
      z-index: 100;
      padding: 10px;
    }
  
    .nav-links a {
      color: white;
      margin: 10px 0;
      text-align: center;
      font-size: 1.2em;
    }
  
    .nav-links.active {
      display: flex;
    }
  }
  
  /* Accordion Styles */
  .accordion {
    max-width: 800px;
    margin: 20px auto;
  }
  
  .accordion-item {
    border: 1px solid #ccc;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .accordion-header {
    background: #1a73e8;
    color: white;
    padding: 15px;
    width: 100%;
    text-align: left;
    font-size: 1.2em;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .accordion-header:hover {
    background: #155bb5;
  }
  
  .accordion-content {
    background: #f9f9f9;
    padding: 15px;
    display: none;
    font-size: 1em;
    line-height: 1.6;
  }
  
  .accordion-content p {
    margin: 0;
  }
  
  /* Footer */
  footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  footer a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: bold;
  }
  
  footer a:hover {
    color: #6bb9f0;
    text-decoration: underline;
  }
  
  /* Form Styles */
  form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #f4f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
  }
  
  input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  button {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button:hover {
    background: #155bb5;
  }
  
  /* Media Query for Tablets */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2em;
    }
  
    .hero-content p {
      font-size: 1.2em;
    }
  
    nav a {
      font-size: 1em;
      margin: 0 10px;
    }
  
    #services li {
      width: 70%;
    }
  
    .accordion-header {
      font-size: 1em;
    }
  }
  
  /* Media Query for Mobile Phones */
  @media (max-width: 480px) {
    .hero-content h1 {
      font-size: 1.5em;
    }
  
    .hero-content p {
      font-size: 1em;
    }
  
    nav {
      flex-direction: column;
    }
  
    nav a {
      font-size: 0.9em;
      margin: 5px 0;
    }
  
    #services li {
      width: 90%;
    }
  
    .accordion-header {
      font-size: 0.9em;
      padding: 10px;
    }
  }
  
  /* Large Screens (Desktops) */
  @media (min-width: 1200px) {
    .hero-content h1 {
      font-size: 3.5em;
    }
  
    .hero-content p {
      font-size: 1.5em;
    }
  
    nav a {
      font-size: 1.3em;
    }
  }
  
  /* Small Desktops and Laptops */
  @media (max-width: 1024px) {
    .hero-content h1 {
      font-size: 2.8em;
    }
  
    .hero-content p {
      font-size: 1.3em;
    }
  
    nav a {
      font-size: 1.1em;
    }
  }
  