/* Symptoms Section Styles - VW Based */
.symptoms-section {
  padding: 5vw 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: auto;
}

.symptoms-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2vw;
  width: 100%;
}

.symptoms-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0vw;
  text-align: center;
  padding: 0 2vw;
}

.symptoms-title {
  font-family: "PloniMLv2AAA-Regular", sans-serif;
  font-size: clamp(28px, 2.5vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--color13); /* Pink #D25189 */
  margin: 0;
}

.symptoms-description {
  font-family: "PloniMaccabiMLv2AAA-Regular", sans-serif;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color3); /* Blue #1E3C95 */
  margin: 0;
  max-width: 60vw;
}

.symptoms-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5vw 5vw;
  justify-content: center;
  align-items: center;
  padding: 1vw 0;
  width: 100%;
  box-sizing: border-box;
}

.symptom-card {
  display: flex;
  align-items: end;
  gap: 1vw;
  max-width: 20vw;
  flex-direction: row-reverse;
}

.symptom-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.2vw;
  height: 4.2vw;
  min-width: 60px;
  min-height: 60px;
  flex-shrink: 0;
}

.symptom-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.symptom-text {
  flex: 1;
}

.symptom-text p {
  font-family: "PloniMaccabiMLv2AAA-Bold", sans-serif;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: bold;
  line-height: 1.2;
  color: var(--color3); /* Blue #1E3C95 */
  margin: 0;
  text-align: right;
  width: 100%;
}

.symptoms-easy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8vw;
  text-align: center;
  padding: 3vw 2vw;
  width: 100%;
  border-top: 0.05vw solid var(--color3);
  border-bottom: 0.05vw solid var(--color3);
}
@media (max-width: 768px) {
  .symptoms-section {
    padding: 13vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 13vw 0 5vw;
  }
  .symptoms-description {
    max-width: 70vw;
  }
  .symptoms-grid {
    align-items: flex-start;
    flex-direction: column;
            padding: 0 4vw 4vw;
  }
  .symptom-card {
    flex-direction: row;
  }
  .symptom-card {
    max-width: 100%;
    flex-direction: row;
}
.symptoms-easy {
    
    padding: 5vw 2vw 3vw;
 
}
