/* ===== Brochure Section ===== */
.brochure-section {
  flex: 1;
  padding-top: 80px;
  padding: 100px 5%;
  text-align: center;
  background: #f9f9f9;
}

.brochure-section h2 {
  font-size: 2.2rem;
  color: #111;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.brochure-section .subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 35px;
}

/* ===== Gallery Grid ===== */
.brochure-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.brochure-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
}

.brochure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.brochure-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.brochure-card:hover img {
  transform: scale(1.05);
}

.brochure-info {
  padding: 18px;
}

.brochure-info h3 {
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 6px;
}

.brochure-info p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

/* ===== Download Button ===== */
.download-section {
  margin-top: 50px;
}

.download-btn {
  display: inline-block;
  background-color: #00c9a7;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background-color: #009e86;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .brochure-section {
    padding: 50px 20px;
  }
  .brochure-card img {
    height: 200px;
  }
    .brochure-section h2 {
        margin-top: 40px;
        font-size: 1.2rem;
        color: #111;
        font-weight: 700;
    }
  
}
