/* 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-3 {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 25px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.product-showcase-3 .title-image-container {
  display: flex;
  gap: 40px;
  flex-direction: row;
}

.product-showcase-3 .approach-item {
  background: var(--primary-color);
  border-radius: 15px;
  padding: 30px;
}

.product-showcase-3 .image-container {
  width: 600px;
  height: 400px;
  background: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.product-showcase-3 .approach-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-showcase-3 .content-wrapper {
  color: white;
  display: flex;
  flex-direction: column;
  /* gap: 15px; */
  flex: 1;
}

.product-showcase-3 .approach-title {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
}

.product-showcase-3 .meta-info {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-showcase-3 .meta-tag {
  display: flex;
  flex-direction: column;
  font-size: 18px;
}

.product-showcase-3 .description {
  background: white;
  padding: 30px;
  border-radius: 10px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--tertiary-color);
  margin-top: 20px;
}

@media (max-width: 1200px) {
  .product-showcase-3 .approach-item {
    flex-direction: column;
  }

  .product-showcase-3 .image-container {
    width: 100%;
    height: 300px;
  }

  .product-showcase-3 .description {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .product-showcase-3 .approach-item {
    padding: 20px;
  }

  .product-showcase-3 .approach-title {
    font-size: 36px;
  }
}
