* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #16384b;
}

.coach-section {
  background: linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
  padding: 90px 24px;
}

.coach-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.coach-image img {
  width: 100%;
  display: block;
  border-radius: 28px;
  object-fit: cover;
  min-height: 560px;
  box-shadow: 0 24px 60px rgba(12, 43, 66, 0.18);
}

.coach-content {
  color: #16384b;
}

.coach-eyebrow {
  margin-bottom: 14px;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2f8fb3;
  font-weight: 700;
}

.coach-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: #0c2b42;
  margin-bottom: 24px;
}

.coach-content p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #35586b;
}

.coach-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.coach-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: all 0.25s ease;
}

.coach-btn.primary {
  background: #0c2b42;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(12, 43, 66, 0.18);
}

.coach-btn.primary:hover {
  transform: translateY(-2px);
  background: #123954;
}

.coach-btn.secondary {
  background: rgba(47, 143, 179, 0.1);
  color: #0c2b42;
  border: 1px solid rgba(47, 143, 179, 0.25);
}

.coach-btn.secondary:hover {
  transform: translateY(-2px);
  background: rgba(47, 143, 179, 0.16);
}

@media (max-width: 900px) {
  .coach-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .coach-image img {
    min-height: auto;
    max-height: 620px;
  }

  .coach-section {
    padding: 72px 20px;
  }
}
