
.washing-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    background-color: #e6f7ff;
    width: 100%; 
  }
  
  .washing-section:nth-child(odd) {
    background-color: #ffffff;
  }
  
  .washing-section .text-container {
    flex: 1;
    margin-right: 20px;
    width: 100%; 
  }
  
  .washing-section .image-container {
    flex: 1;
    text-align: center;
    width: 95%; 
    
  }

  .btn {
    padding: 5px 5px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
  }
  
  .btn-primary {
    background-color: #007BFF;
    color: #fff;
  }
  
  .btn-primary:hover {
    background-color: #0056b3;
  }
  
  .btn-secondary {
    background-color: #28a745;
    color: #fff;
  }
  
  .btn-secondary:hover {
    background-color: #218838;
  }
  
  .washing-section img {
    width: 80%; 
    height: 60%;
  }

  .washing-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
  }
  
  .washing-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .washing-section .btn {
    margin-right: 10px;
    padding: 10px 20px;
    font-size: 1.2rem;
  }
  
  .brands-section {
    background-color: #0355cc;
    color: #ffffff;
    padding: 100px;
    text-align: center;
  }
  
  .brands-section h2 {
    font-size: 2.5rem;
    margin-bottom: 70px;
  }
  
  .brands-columns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .column {
    flex: 1;
    min-width: 250px;
  }
  
  .brands-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
  }
  
  .brands-list li {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .banner-section {
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    background-color:rgb(255, 253, 253);
  }
  
  .banner-content {
    position: relative;
    z-index: 2;
  }
  
  .banner-content h1 {
    font-size: 2.5rem;
    color: #0355cc;
    margin-bottom: 20px;
  }
  
  .banner-content p {
    font-size: 1.2rem;
    color: #ffffff;
  }
  
  .banner-button {
    font-size: 1.2rem;
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
  }
  
  .brand-logo-section {
    text-align: center;
    margin: 50px 0;
    background-color:rgb(255, 253, 253);
  }
  
  .brand-logo {
    max-width: 100%;
    height: auto;
  }
  
  /* FAQ Section */
  .faq-section {
    background-color: #0355cc;
    color: #ffffff;
    padding: 60px;
    text-align: center;
    border-radius: 10px;
  }
  
  .faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: bold;
  }
  
  .faq-item {
    margin-bottom: 30px;
    transition: transform 0.4s ease-in-out;
  }
  
  .faq-item:hover {
    transform: scale(1.03);
  }
  
  .faq-question {
    background-color: #ffffff;
    color: #0355cc;
    border: none;
    padding: 20px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.4s ease, color 0.4s ease;
  }
  
  .faq-question:hover {
    background-color: #0355cc;
    color: #ffffff;
  }
  
  .faq-answer {
    display: none;
    padding: 20px;
    background-color: #4CAF50;
    color: #ffffff;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 1.1rem;
    transition: opacity 0.5s ease-in-out, max-height 0.5s ease-in-out;
    max-height: 0;
    overflow: hidden;
  }
  
  .faq-answer p {
    margin: 0;
    line-height: 1.5;
  }
  .contact_section{
    background-color: #ffffff;
  }
  
  
  @media (max-width: 480px) {
  .washing-section {
    display: flex; 
    flex-direction: column; 
    align-items: center;
    padding: 20px;
  }
  
  .washing-section .text-container {
    margin-right: 0;
    text-align: center;
  }
  
  .washing-section img {
    width: 80%; 
  }
  
  .washing-section h2 {
    font-size: 2rem;
  }
  
  .washing-section p {
    font-size: 1rem;
  }
  
  .washing-section .btn {
    padding: 8px 15px;
    font-size: 1rem;
  }
  
  .brands-section{
      padding-left: 20px;
   }
  .brands-section h2{
      margin-left: 70px;
   }
    .brands-columns {
      gap: 10px;
  }
  
    .faq-question {
      font-size: 1rem;
      padding: 10px;
    }
  
    .faq-answer {
      font-size: 0.9rem;
      padding: 10px;
    }
  
    .call-button {
      font-size: 0.8rem;
      padding: 8px 16px;
    }

  .banner-section {
    padding: 40px 10px;
  }
  
  .banner-content h1 {
    font-size: 2rem;
  }
  
  .banner-content p {
    font-size: 1rem;
  }
  
  .brand-logo-section {
    height: 60vh;
  }
  
  .brand-logo {
    height: 100%; 
    width: auto; 
    object-fit: cover; 
  }
.faq-section{
        
    padding: 20px;
}
.faq-section h2{
    font-size:1.8rem;

}
.faq-question {
  font-size: 1rem;
  padding: 10px;
}

.faq-answer {
  font-size: 0.9rem;
  padding: 10px;
}
  
  }
  