/* General styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #f1f1f1;
    background-color: #222;
  }
  
  a {
    color: #f3931c;
    text-decoration: none;
  }
  
  a:hover {
    color: #ab681c;
  }
  
  h1, h2, h3 {
    margin-bottom: 20px;
  }
  
  p {
    margin-bottom: 10px;
  }
  
  button {
    background-color: #f3931c;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #ab681c;
  }
  
  /* Header styles */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
  }
  

  .logo img {
    max-width: 300px; 
    height: auto;
    display: block;
  }
  
  .tagline {
    font-size: 16px;
    margin-left: 20px;
  }
  
  nav {
    display: inline;
  }
  
  nav a {
    margin: 0 10px;
  }
  
  /* Sections */
  section {
    padding: 40px;
  }
  
  /* Hero section */
  #hero {
    background-color: #444;
    text-align: center;
    padding: 60px 0;
  }
  
  /* Services section */
#services {
    text-align: center;
  }
  
  .services-container {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 80%;
    margin: 0 auto;
  }
  
  .service {
    margin-bottom: 30px;
    flex: 1;
    padding: 0 10px;
  }
  
  .service h3 {
    margin-bottom: 10px;
  }
  
  .service ul {
    list-style-type: none;
    padding: 0;
  }
  
  .service li {
    margin-bottom: 5px;
  }

  /* Case Studies section */
  #case-studies {
    background-color: #333;
    text-align: center;
  }
  
  /* Blog section */
  #blog {
    background-color: #444;
    text-align: center;
  }
  
  /* About Us section */
  #about-us {
    background-color: #333;
    text-align: center;
  }
  
  /* Contact Us section */
  #contact-us {
    background-color: #444;
    text-align: center;
  }
  
  /* Footer */
  footer {
    padding: 20px;
    background-color: #333;
    text-align: center;
  }
  
  .social-media-icons {
    display: inline;
    margin-left: 5px;
    margin-right: 5px;
  }
  

  .email-link {
    color: #f3931c;
    text-decoration: none;
  }
  
  .email-link:hover {
    color: #ab681c;
    text-decoration: underline;
  }


  /* Responsive styles */
@media screen and (max-width: 768px) {
    header {
      flex-direction: column;
    }
  
    .logo {
      margin-bottom: 10px;
    }
  
    #hero {
      padding: 40px 0;
    }
  
    .services-container {
      max-width: 100%;
    }
  
    .service {
      padding: 0 20px;
      box-sizing: border-box;
      flex: 100%;
    }
  }
  
  @media screen and (max-width: 480px) {
    header {
      padding: 10px;
    }
  
    .logo {
      font-size: 20px;
    }
  
    .tagline {
      font-size: 14px;
    }
  
    nav a {
      margin: 0 5px;
    }
  
    section {
      padding: 20px;
    }
  
    h1, h2, h3 {
      font-size: 1.2em;
    }
  
    .service {
      padding: 0 10px;
    }
  }