/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Section */
.why-book {
  background: #eb5e28;
  padding: 10px 15px; /* kam height */
  color: #fffcf2;
}

/* Flex row for heading + cards */
.why-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* responsive ke liye */
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

/* Heading */
.why-row h2 {
  font-size: 24px;
  font-weight: 400;
  color: #fffcf2;
  flex: 1 1 200px;
  min-width: 200px;
}

/* Grid of cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  flex: 3 1 600px;
}

/* Cards */
.why-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 15px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.15);
}

.why-card i {
  font-size: 30px;
  color: #252422;
  margin-bottom: 8px;
}

.why-card h3 {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #fffcf2;
}

.why-card p {
  font-size: 11px;
  color: #403d39;
  margin-bottom: 0;
}
