@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f7f7f7;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.container h1,
.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif !important;
  margin-bottom: 20px;
  color: #222;
}

.container p {
  text-align: center;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Responsive two cards per row */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* Card Styling */
.card {
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: scale(1.04);
}

/* Quote Styling */
.card blockquote {
  font-style: italic;
  font-size: 15px;
  color: #444;
  background-color: #f4f4f4;
  border-left: 4px solid #ccc;
  padding: 15px 20px;
  margin-bottom: 20px;
  line-height: 1.6;
  border-radius: 6px;
  min-height: 150px;
}

/* Coach Image */
.card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  border: 3px solid #ddd;
  transition: transform 0.3s ease;
}

.card img:hover {
  transform: scale(1.15);
}

/* Image Info */
.image-info {
  margin-top: 12px;
  text-align: center;
}

.image-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}

.image-info p {
  font-size: 14px;
  color: #777;
  margin: 0;
}
