/* GLP-1 Challenges Page Specific Styles */
.glp1-challenges .nav-item {
  border-bottom: 4px solid #1db4b7;
}

/* Obesity Map */
.obesity-map {
  text-align: center;
  margin: 40px 0;
}

.obesity-map img {
  max-width: 100%;
  height: auto;
}

/* Treatment Pillars */
.treatment-pillars {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.pillar img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.pillar h3 {
  margin: 0;
  font-size: 18px;
  line-height: 22px;
}

/* Treatment Goals */
.treatment-goals {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 30px;
  background-color: #f8fff8;
  border: 2px solid #46AB46;
  border-radius: 15px;
  margin: 40px 0;
}

.treatment-goals img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.goals-content {
  flex: 1;
}

.goals-content h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

/* Challenges Image */
.challenges-image {
  text-align: center;
  margin: 40px 0;
}

.challenges-image img {
  max-width: 100%;
  height: auto;
}

/* Comparison Chart */
.comparison-chart {
  text-align: center;
  margin: 40px 0;
}

.comparison-chart img {
  max-width: 100%;
  height: auto;
}

/* Side Effects Grid */
.side-effects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

.side-effect {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.side-effect img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.side-effect-content {
  flex: 1;
}

.side-effect-content h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.side-effect-content p {
  margin-bottom: 10px;
}

/* Adherence Section */
.adherence-section {
  margin: 40px 0;
}

.adherence-info {
  background-color: #f8fff8;
  padding: 30px;
  border: 2px solid #46AB46;
  border-radius: 15px;
  margin-bottom: 30px;
}

.adherence-info h3 {
  margin-top: 0;
  color: #46AB46;
}

.adherence-strategies {
  display: flex;
  flex-direction: column;
  gap: 30px;
}


/* Nutrition Benefits */
.nutrition-benefits {
  margin: 40px 0;
}

.benefit-category {
  margin-bottom: 40px;
}

.benefit-category h3 {
  color: #46AB46;
  margin-bottom: 15px;
  font-size: 24px;
}

.benefit-category ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.benefit-category ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.benefit-category ul li:before {
  content: "•";
  color: #46AB46;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* References Section */
.references-section {
  background-color: #f8f8f8;
  padding: 40px 0;
}

.references-list {
  padding-left: 20px;
  margin: 20px 0;
}

.references-list li {
  margin-bottom: 15px;
  line-height: 1.6;
}

.references-list em {
  font-style: italic;
}


.treatment-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    justify-items: center;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
/* Responsive Design */
@media (max-width: 768px) {
  .treatment-pillars {
    flex-direction: row;
    align-items: center;
	  grid-template-columns:repeat(1, 1fr);
  }
  
  .treatment-goals {
    flex-direction: column;
    text-align: center;
  }
	
	.treatment-goals img{margin:0 auto}
  
  .side-effects-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
	
	.side-effects-grid img {margin:0 auto;}
  
  .side-effect {
    flex-direction: column;
    text-align: center;
  }
  
  .strategy {
    flex-direction: column;
    text-align: center;
  }
  
  .pillar {
    min-width: 100%;
    max-width: 100%;
  }
}

.nutritional-challenges-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.nutritional-text {
  flex: 1 1 500px;
  min-width: 300px;
}

.challenges-image {
  flex: 1 1 400px;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: flex-start;margin:0;
}

.challenges-image img {
  max-width: 100%;
  height: auto;
}

.preserve-muscle-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.preserve-text {
  flex: 1 1 500px;
  min-width: 300px;
}

.comparison-chart {
  flex: 1 1 400px;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.comparison-chart img {
  max-width: 100%;
  height: auto;
}

.obesity-treatment-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.obesity-text {
  flex: 1 1 600px;
  min-width: 300px;
}

.obesity-map {
  flex: 1 1 300px;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
	margin:0;
}

.obesity-map img {
  max-width: 100%;
  height: auto;
	margin:0;
}
@media (max-width: 768px) {
  .obesity-treatment-wrapper {
    flex-direction: column;
	  padding-bottom:0;
  }

  .obesity-map {
	  display:none;
  
  }
	
	
}



.strategy {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 30px;
  background-color: #ffffff;

}


#nutritional-challenges{padding-bottom:0}

.references-section{background:white;}