/* ====================================
   Root Variables and Base Styles
   ==================================== */
/* Root Variables */
:root {
  --primary-color: #81b71a;
  --secondary-color: #4ebbf7;
  --tertiary-color: #6d6d6d;
  --body-font: Arial, sans-serif;
  --title-font: Helvetica, Arial, sans-serif;
}

/* Base Typography */
body {
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
}

p,
span,
a,
li,
button {
  font-family: var(--body-font);
}

/* ====================================
     Common Components
     ==================================== */
.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  opacity: 0.3;
}

.feature-item {
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
}

.tag {
  transition: background-color 0.2s ease;
}

.tag:hover {
  background-color: var(--secondary-color);
}

.cta-button {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Product Showcase Template 3: Program Stages */
.product-showcase-3 {
  padding: 100px 0;
  background: white;
}

.product-showcase-3 .showcase-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-showcase-3 .showcase-header {
  text-align: center;
  margin-bottom: 60px;
}

.product-showcase-3 h2 {
  font-size: 48px;
  color: var(--tertiary-color);
  margin-bottom: 20px;
}

.product-showcase-3 .subtitle {
  font-size: 24px;
  color: var(--tertiary-color);
  opacity: 0.7;
}

.product-showcase-3 .product-item {
  max-width: 800px;
  margin: 0 auto;
}

.product-showcase-3 .product-image {
  width: 100%;
  margin-bottom: 40px;
}

.product-showcase-3 .product-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.product-showcase-3 h3 {
  font-size: 32px;
  color: var(--tertiary-color);
  margin-bottom: 20px;
}

.product-showcase-3 .product-description {
  font-size: 20px;
  color: var(--tertiary-color);
  margin-bottom: 30px;
}

.product-showcase-3 .feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.product-showcase-3 .feature-list li {
  font-size: 18px;
  color: var(--tertiary-color);
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.product-showcase-3 .feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--tertiary-color);
}

.product-showcase-3 .stage-tag {
  display: inline-block;
  background: var(--tertiary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: bold;
}
