:root {
  --primary-green: #0a7443;
  --accent-green: #50a854;
  --accent-red: #cc0000;
  --bg-light: #f8fcf9;
  --text-dark: #222;
  --text-muted: #555;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background-color: #fff;
}

.section-title {
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

/* Hero Section */
.treatment-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
}


.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-content h1 span {
  color: #ff3333;
  display: block;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Info Box */
.treatment-info-box {
  background-color: var(--accent-green);
  color: white;
  border-radius: 15px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}

.treatment-info-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
  flex: 1;
  font-weight: 600;
  line-height: 1.4;
}

.treatment-btns {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.btn-white {
  background: white;
  color: var(--text-dark);
  padding: 12px 25px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  color: var(--primary-green);
}

/* Symptom Cards */
.symptom-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

.symptom-card {
  background: #f9fbf9;
  border: 1px solid #e2eee2;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  width: calc(33.33% - 15px);
  min-width: 250px;
}

.symptom-card i {
  font-size: 2rem;
  color: var(--accent-green);
}

.symptom-card span {
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
}

/* Causes Section */
.causes-container {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.causes-img {
  width: 45%;
  height: 400px;
  background-size: cover !important;
  background-position: center center !important;
}

.causes-list {
  width: 55%;
  padding: 50px;
}

.causes-list ul {
  list-style: none;
  padding: 0;
}

.causes-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.causes-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-size: 1.5rem;
  line-height: 1;
}

/* Package Includes */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  text-align: center;
  margin-bottom: 50px;
}

.package-item i {
  font-size: 2.5rem;
  color: var(--accent-green);
  margin-bottom: 15px;
  display: block;
}

.package-item span {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.3;
  display: block;
}

/* Remedies Cards */
.remedy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.remedy-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  transition: transform 0.3s ease;
}

.remedy-card:hover {
  transform: translateY(-10px);
}

.remedy-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.remedy-body {
  padding: 20px;
  text-align: center;
}

.remedy-body h4 {
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.remedy-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CTA Button */
.cta-container {
  text-align: center;
  margin: 60px 0;
}

.btn-book {
  background-color: var(--primary-green);
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 10px 20px rgba(10, 116, 67, 0.2);
}

.btn-book:hover {
  background-color: #085e36;
  transform: scale(1.05);
  color: white;
}

.footer-note {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  padding: 20px;
  background: #f0f7f3;
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.2rem; }
  .treatment-info-box { flex-direction: column; text-align: center; }
  .causes-container { flex-direction: column; }
  .causes-img, .causes-list { width: 100%; }
  .symptom-card { width: 100%; }
}
