
  .services {
    background-color: #f9f9f9;
    padding: 40px 20px;
}

.services h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.service-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.service-item {
    flex: 0 0 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-item h3 {
    padding: 20px;
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-item p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

.service-item .learn-more {
    display: block;
    background-color: #ad0101;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    text-align: center;
    transition: background-color 0.3s;
}

.service-item .learn-more:hover {
    background-color: #8e0000;
}

/* FAQ */

.faq-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
  }
  
  .faq-title {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 2.5rem;
  }
  
  .faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: background-color 0.3s;
    position: relative;
  }
  
  .faq-question:hover {
    background-color: #f8f8f8;
  }
  
  .faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #ad0101;
  }
  
  .faq-item.active .faq-question::after {
    content: '-';
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
  }
  
  .faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
  }
  
  .faq-answer p {
    padding: 1.5rem;
    margin: 0;
    line-height: 1.6;
    color: #666;
  }

  
/* Hamburger Menu Responsive Styles */
@media screen and (max-width: 768px) {
  
}
  /* Adjust hero section */
  .hero {
    flex-direction: column;
    text-align: center;
    height: auto;
  }

  .hero-content {
    max-width: 100%;
  }
  @media (max-width: 480px) {
    .faq-container {
        padding: 0 15px;
    }
  
    .faq-title {
        font-size: 1.75rem;
    }
  
    .faq-question {
        padding: 1rem;
    }
  
    .faq-answer p {
        padding: 1rem;
    }
  }