/* Banner Section */
.banner-section {
    background-color: #EFEFEF;
    padding: 60px 0;
  }
  
  .banner-title {
    font-size: 2.5rem;
    color: #4C3923;
  }
  
  .banner-subtitle {
    font-size: 1.25rem;
    color: #777;
    margin-top: 10px;
  }
  
  /* Features Section */
  .features-section .feature-box {
    background-color: #FFF;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 10px; /* Added margin for better spacing on smaller screens */
  }
  
  .features-section .feature-box:hover {
    background-color: #f8f8f8;
    border-color: #4C3923;
  }
  
  .features-section .row {
    display: flex; /* Ensure it uses flex layout */
    flex-direction: row; /* Default to row layout */
    flex-wrap: wrap; /* Wrap columns to the next row on smaller screens */
    justify-content: center; /* Center items */
    align-items: center !important;
  }
  
  /* Feature Box Icons */
  .feature-icon {
    font-size: 3rem;
    color: #4C3923;
    margin-bottom: 15px;
  }
  
  .feature-title {
    font-size: 1.5rem;
    color: #4C3923;
  }
  
  .feature-description {
    font-size: 1rem;
    color: #666;
  }
  
  /* CTA Section */
  .cta-section {
    background-color: #4C3923;
    color: #FFF;
    padding: 50px 20px; /* Adjusted padding for better spacing */
  }
  
  .cta-title {
    font-size: 2rem;
    color: #FFC107;
  }
  
  .cta-subtitle {
    font-size: 1.25rem;
    color: #FFF;
    margin-top: 10px;
  }
  
  .cta-button {
    background-color: #FFC107;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    color: #4C3923;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #FFD54F;
  }
  
  /* Mobile Responsive Adjustments */
  @media (max-width: 768px) {
    .features-section .row {
      flex-direction: column; /* Stack columns vertically */
    }
  
    .features-section .feature-box {
      margin-bottom: 20px; /* Add more space between features */
      padding: 15px; /* Reduce padding */
    }
  
    .feature-title {
      font-size: 1.25rem; /* Slightly smaller font size */
    }
  
    .feature-description {
      font-size: 0.875rem; /* Smaller description font */
    }
  
    .cta-title {
      font-size: 1.75rem; /* Adjust title font size */
    }
  
    .cta-subtitle {
      font-size: 1rem; /* Adjust subtitle font size */
    }
  
    .cta-button {
      padding: 8px 16px; /* Smaller button padding */
      font-size: 0.875rem; /* Adjust button font size */
    }
  }
  
  @media (max-width: 576px) {
    .features-section .row {
      padding: 0 15px; /* Add padding to row on small screens */
    }
  
    .features-section .feature-box {
      padding: 10px; /* Further reduce padding */
    }
  
    .feature-title {
      font-size: 1rem; /* Smaller font size for feature title */
    }
  
    .feature-description {
      font-size: 0.75rem; /* Smaller font size for feature description */
    }
  
    .cta-title {
      font-size: 1.5rem; /* Smaller font size */
    }
  
    .cta-subtitle {
      font-size: 0.875rem; /* Smaller font size */
    }
  
    .cta-button {
      padding: 6px 12px; /* Reduce padding on button */
      font-size: 0.75rem; /* Smaller button font size */
    }
  }
  