.brochure-section {
  padding: 80px 24px;
  background-color: #fcfcfc;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brochure-header {
  text-align: center;
  margin-bottom: 50px;
}

.brochure-header h1 {
  font-family: "Gambarino", serif;
  font-size: 48px;
  color: #1F2F5D;
  margin-bottom: 16px;
}

.brochure-header p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.brochure-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}

.brochure-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brochure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.brochure-icon {
  width: 60px;
  height: 60px;
  background-color: #f4e8eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.brochure-icon svg {
  width: 28px;
  height: 28px;
  stroke: #c83063;
}

.brochure-title {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #1F2F5D;
  margin-bottom: 12px;
}

.brochure-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.5;
  flex-grow: 1;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #c83063;
  color: white;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  width: 100%;
  justify-content: center;
}

.download-btn:hover {
  background-color: #a82752;
}

.download-btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .brochure-header h1 {
    font-size: 36px;
  }

  .brochure-card {
    padding: 30px 20px;
  }
}