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

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
body {
  font-family: var(--body-font);
  line-height: 1.6;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  font-size: 20px;
}

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

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

.product-showcase-2 {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 25px;
}

.product-showcase-2 .approach-item {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  margin-bottom: 40px;
}

.product-showcase-2 .content-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.product-showcase-2 .image-title-wrapper {
  display: flex;
  gap: 30px;
}

.product-showcase-2 .image-wrapper {
  width: 250px;
  flex-shrink: 0;
}

.product-showcase-2 .approach-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-showcase-2 .approach-title {
  font-size: 32px;
  text-transform: uppercase;
  color: var(--tertiary-color);
}

.product-showcase-2 .description {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  font-size: 18px;
  line-height: 1.6;
  color: var(--tertiary-color);
}

.product-showcase-2 .highlight-box {
  background: rgba(78, 187, 247, 0.1);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--secondary-color);
}

.product-showcase-2 .highlight-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--tertiary-color);
}

.product-showcase-2 .info-box {
  background: var(--primary-color);
  padding: 30px;
  border-radius: 10px;
  color: white;
}

.product-showcase-2 .info-title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 30px;
}

.product-showcase-2 .meta-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product-showcase-2 .meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

.product-showcase-2 .meta-label {
  opacity: 0.9;
}

.product-showcase-2 .meta-value {
  font-weight: bold;
}

.product-showcase-2 .stars {
  color: white;
  font-size: 20px;
}

@media (max-width: 968px) {
  .product-showcase-2 .approach-item {
    grid-template-columns: 1fr;
  }

  .product-showcase-2 .image-title-wrapper {
    flex-direction: column;
  }

  .product-showcase-2 .image-wrapper {
    width: 100%;
    max-width: 250px;
  }

  .product-showcase-2 .info-box {
    text-align: center;
  }

  .product-showcase-2 .meta-info {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .product-showcase-2 .approach-title {
    font-size: 28px;
  }

  .product-showcase-2 .description,
  .product-showcase-2 .highlight-text {
    font-size: 16px;
  }
}
