/* Brochure Section Styling */
.brochure-section {
    background-color: #4C0013; /* Black background */
    padding: 50px 20px;
    text-align: center;
  }
  
  .brochure-section .section-title {
    color: white; /* Yellow title */
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
  }
  
  .brochure-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    justify-content: center;
    gap: 30px; /* Space between items */
  }
  
  .brochure-item {
    background-color: #fff; /* White background for each item */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow effect */
    text-align: center;
    max-width: 300px;
  }
  
  .brochure-image {
    width: 100%; /* Ensure the image scales with the container */
    height: auto;
    border-radius: 8px; /* Add rounded corners to the image */
    margin-bottom: 15px;
  }
  .brochure-image:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .download-btn {
    display: inline-block;
    background-color: #ffc107; /* Yellow button */
    color: #000; /* Black text */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .download-btn:hover {
    background-color: #fff; /* White background on hover */
    color: #000; /* Black text */
    box-shadow: 0 4px 10px rgba(255, 255, 0, 0.6); /* Glow effect */
  }
  
  /* Responsive Design */
  
  /* Medium Screens (Tablets) */
  @media (max-width: 768px) {
    .brochure-item {
      max-width: 90%; /* Adjust width for smaller screens */
    }
    
    .section-title {
      font-size: 2rem; /* Adjust font size */
    }
  }
  
  /* Small Screens (Mobile) */
  @media (max-width: 480px) {
    .brochure-item {
      max-width: 100%; /* Full width for mobile screens */
      padding: 15px;
    }
    
    .section-title {
      font-size: 1.8rem; /* Adjust font size */
    }
  }
  