@font-face {
  font-family: "PoppinsExtraLight";
  src: url("/public/font/Poppins-ExtraLight.ttf");
}

@font-face {
  font-family: "PoppinsBold";
  src: url("/public/font/Poppins-Bold.ttf");
}

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

:root {
  --primary-color: #1a8c4a;
  --secondary-color: #d4b08c;
  --accent-color: #2bb573;
  --bg-color: #fcf8f2;
  --text-color: #333;
  --white: #ffffff;
}

html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "PoppinsExtraLight", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.8;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4 {
  font-family: "PoppinsBold", sans-serif;
  color: #2c3e50;
  margin-top: 1.5em;
}

.pillar-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.pillar-header {
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.pillar-header h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.pillar-header .intro-text {
  font-size: 1.3rem;
  color: #555;
  max-width: 900px;
  margin: 0 auto;
}

.pillar-content section {
  margin-bottom: 100px;
}

.pillar-content h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  border-left: 8px solid var(--accent-color);
  padding-left: 25px;
  color: var(--primary-color);
}

.pillar-content h3 {
  font-size: 1.8rem;
  margin-top: 50px;
  margin-bottom: 25px;
  color: #b08d6a; /* slightly darker secondary */
}

.pillar-content p {
  margin-bottom: 25px;
  font-size: 1.15rem;
  text-align: justify;
}

.pillar-content ul {
  margin-bottom: 30px;
  padding-left: 30px;
}

.pillar-content li {
  margin-bottom: 15px;
  font-size: 1.15rem;
  list-style-type: none;
  position: relative;
}

.pillar-content li::before {
    content: "🐢";
    position: absolute;
    left: -35px;
}

.highlight-box {
  background-color: var(--white);
  border: 1px solid #eee;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.06);
  margin: 50px 0;
}

.cta-section {
  text-align: center;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 80px 40px;
  border-radius: 30px;
  margin-top: 80px;
  box-shadow: 0 20px 60px rgba(26, 140, 74, 0.2);
}

.cta-section h2 {
  color: var(--white);
  border: none;
  padding: 0;
  margin-bottom: 25px;
  font-size: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 18px 45px;
  background-color: var(--secondary-color);
  color: var(--white);
  text-decoration: none;
  font-family: "PoppinsBold";
  border-radius: 60px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  filter: brightness(1.1);
}

.cta-button.outline {
    background-color: transparent;
    border: 2px solid var(--white);
}

.image-box {
  margin: 60px 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.image-caption {
  padding: 20px;
  background: var(--white);
  font-style: italic;
  text-align: center;
  color: #666;
  border-top: 1px solid #f0f0f0;
}

.kw-pill {
    display: inline-block;
    background: #e6f4ea;
    color: var(--primary-color);
    padding: 3px 12px;
    border-radius: 6px;
    font-weight: bold;
    font-family: "PoppinsBold";
}

.faq-item {
    margin-bottom: 30px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
}

.faq-item h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.4rem;
}

@media (max-width: 992px) {
  .pillar-header h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .pillar-header h1 {
    font-size: 2rem;
    overflow-wrap: break-word;
  }
  .pillar-content h2 {
    font-size: 1.7rem;
    padding-left: 15px;
  }
  .cta-section h2 {
      font-size: 2rem;
  }
  .pillar-container {
      padding: 40px 15px;
  }
}

@media (max-width: 480px) {
    .pillar-header h1 {
        font-size: 1.6rem;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .cta-button {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
}
