/* how-strong.css */

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f8f8;
  margin: 0;
  padding: 0;
}

.how-strong-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 15px;
  box-sizing: border-box;
}

/* Header Image */
.header-image img {
  
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  
}

/* Intro Section */
.strength-intro {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.strength-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.strength-image img {
  max-height: 348px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.strength-image {
  flex: 1 1 300px;
  text-align: center;
}

.strength-text {
  flex: 2 1 400px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .strength-row {
    flex-direction: column;
    align-items: center;
  }

  .strength-text {
    text-align: left;
  }
}


.weight-test-section {
  margin-bottom: 50px;
}

.test-header img {
  width: 100%;
  height: auto;
  max-width: 1000px;
  display: block;
  margin: 0 auto 25px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.weight-test-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  align-items: flex-start;
}

.test-image,
.test-description,
.test-side-image {
  flex: 1 1 300px;
  text-align: center;
}

.test-image img,
.test-side-image img {
  max-height: 402px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.click-text {
  font-size: 0.85rem;
  margin-top: 8px;
  color: #444;
}

.test-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  text-align: left;
}

.deflection-label {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 10px 0;
  color: #2c5c2c;
}

.disclaimer {
  font-size: 0.75rem;
  color: #666;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .weight-test-row {
    flex-direction: column;
    align-items: center;
  }

  .test-description {
    text-align: left;
  }
}
