body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    /* background color should be a dark purple */
    background-color: #f0f0f0;
  }
  
  header {
    background-color: #0d0d0d;
    padding: 20px;
    /* text-align: center; */
    height: 150px;
    width: 100%;
  }
  
  .logo-header {
    width: 200px;
    position: absolute;
    top: 0;
    left: 0;
  }

  h1 {
    font-size: 3em;
    /* margin-bottom: 5px; */
  }
  
  h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  .header-title{
    font-size: 3em;
    position: relative;
    text-align: center;
    top: 40px;
    color: white;
    /* add drop shadow */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
  }
  
  main {
    padding: 50px;
  }

  .logo {
    position: relative;
    text-align: center;
    /* width: 300px; */
  }
  .title {
    margin-top: -100px;
    position: relative;
    text-align: center;
  }
  
  .hero {
    position: relative;
    text-align: center;
    max-height: 1024px;
  }
  
  .hero img {
    width: 100%;
    height: auto;
  }
  
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2em;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
  }
  
  .hero-content h3 {
    font-size: 2em;
    margin-bottom: 15px;
  }
  
  .videos {
    position: relative;
    text-align: center;
    margin-top: 50px;
    background-color:  #0d0d0d;
  }

  .intro-video{
    width: 80%;
  }
  
  .services {
    position: relative;
    text-align: center;
    margin-top: 50px;
  }
  
  .service-card {
    display: inline-block;
    margin: 15px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
  }

  .dark-contrast-title {
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
  }
  
  .benefits {
    position: relative;
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    background-color:  #0d0d0d;
    padding-bottom: 25px;

  }
  
  .benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color:white;
  }
  
  .benefits li {
    margin-bottom: 10px;
    color:white;
  }
  
  .call-to-action {
    margin-top: 50px;
    text-align: center;
  }
  
  .contact {
    position: relative;
    text-align: center;
    margin-top: 50px;
  }
  
  .contact form {
    margin: 20px auto;
    width: 50%;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .contact label {
    display: block;
    margin-bottom: 5px;
  }
  
  .contact input,
  .contact textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 15px;
  }
  
  .contact button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  footer {
    background-color: #f0f0f0;
    padding: 20px;
    text-align: center;
  }
  
  .white-link {
    color: white;
    text-decoration: none;
  }
  
  .copyright {
    font-size: 0.8em;
    margin-top: 10px;
  }
  .logo-footer{
    width: 200px;
  }





/* Responsive styles */
@media only screen and (max-width: 768px) {
    header {
        height: 100px;
    }

    .logo-header {
        width: 100px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.2em;
    }
    header {
        padding-top:10px;
        padding-bottom: 10px;
    }

    .header-title {
        position: relative;
        text-align: center;
        font-size: 1.25em;
        /* top: 10px; */
        /* left: 25%; */

    }

    main {
        padding: 30px;
    }

    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 0.75em;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
      }
    

    .logo, .title {
        display: block;
        text-align: center;
    }

    .videos {
        width: 100%;
    }

    .white-link{
        color: black;
    }
}