.fit-guide-container {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  font-size: 0.95em;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  color: #222;
  line-height: 1.6;
}

.fit-guide-container h1 {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #111;
}

.fit-guide-container .intro-text {
  text-align: center;
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 50px auto;
  color: #444;
}

.fit-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  background: #fafafa;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.fit-section:hover {
  transform: translateY(-4px);
}

.fit-image {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.fit-image img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fit-description {
  flex: 3;
  min-width: 300px;
}

.fit-description h2 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.5rem;
  color: #1a1a1a;
}

.fit-description .tagline {
  font-weight: 600;
  font-style: italic;
  margin-bottom: 15px;
  color: #7f6b5f;
}

.fit-description strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

hr {
  border: 0!important;
  height: 1px!important;
  background: #ccc;
  margin: 40px 0;
}


@media (max-width: 600px) {
  .fit-image img {
    width: 100%;
    height: auto;
  }

  .fit-section {
    flex-direction: column;
    text-align: center;
    padding: 20px 10px;
  }

  .fit-description {
    min-width: auto !important;
    padding: 0 15px;
    box-sizing: border-box;
  }
}
