
.stove-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    background-color: #f8f9ff;
    width: 100%;
  }
  
  .stove-section:nth-child(odd) {
    background-color: #ffffff;
  }
  
  .stove-section .text-container {
    flex: 1;
    margin-right: 20px;
    width: 100%;
    padding:2%;
  }
  
  .stove-section .image-container {
    flex: 1;
    text-align: center;
    width: 80%;
  }

  .stove-section img {
    width: 90%;
    height: 80%;
    border-radius: 20px;
  }
  
  .stove-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
  }
  .hours{
    color: #0355cc;
  }
  
  .stove-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .stove-section .btn {
    margin-right: 10px;
    padding: 10px 20px;
    font-size: 1.2rem;
  }
  
  .banner-section {
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    margin-top: 2%;
    text-align: center;
    position: relative;
    background-color:#0355cc;
  }
  
  .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;
  }
  
  .banner-content {
    position: relative;
    z-index: 2;
  }
  
  .banner-content h1 {
    font-size: 2rem;
    color: #fefeff;
    margin-bottom: 20px;
  }
  
  .banner-content p {
    font-size: 1.2rem;
    color: #ffffff;
  }
  
  
  .brand-logo-section {
    text-align: center;
    margin: 50px 0;
    background-color: rgb(255, 253, 253);
  }
  
  .brand-logo {
    max-width: 100%;
    height: auto;
  }
  
  .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;
  }
  
  @media (max-width: 480px) {
    .stove-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px;
    }
  
    .stove-section .text-container {
      margin-right: 0;
      text-align: center;
    }
  
    .stove-section img {
      width: 100%;
    }
  
    .stove-section h2 {
      font-size: 2rem;
      font-weight: 800;
    }
  
    .stove-section p {
      font-size: 1rem;
    }
  
    .stove-section .btn {
      padding: 8px 15px;
      font-size: 1rem;
    }
  
    .banner-section {
      padding: 40px 10px;
    }
  
    .banner-content h1 {
      font-size: 2rem;
    }
  
    .banner-content p {
      font-size: 1rem;
    }
  
    .brand-logo-section {
        height: auto;
    }
      .brand-logo {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    .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;
    }
  
    }

  