:root {
  --green: #4caf50;
  --light-green: #e8f5e9;
  --dark-text: #2e2e2e;
  --accent: #81c784;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  color: var(--dark-text);
  background: #fff;
   padding-top: 80px;
}
a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  z-index: 100;
}
.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}
.site-nav a {
  font-weight: 500;
  padding: 8px;
  transition: color 0.3s;
}
.site-nav a:hover {
  color: var(--green);
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: url("../assets/images/texture.avif") repeat,
    url("../assets/images/hero.jpeg") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(232, 245, 233, 0.6);
}
.hero-content {
  position: relative;
  max-width: 800px;
  color: var(--dark-text);
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--green);
}
.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 32px;
}
.hero-content .btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s;
}
.hero-content .btn:hover {
  background: var(--accent);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.spacer {
  height: 72px;
}

.about-section {
  background: var(--light-green);
  padding: 80px 20px;
}
.about-section .about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.about-text {
  flex: 1 1 320px;
  animation: fadeInLeft 1s ease-out forwards;
  opacity: 0;
  animation-delay: 0.3s;
}
.about-text h2 {
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 16px;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-text);
  margin-bottom: 16px;
}
.about-image {
  flex: 1 1 320px;
  text-align: center;
  animation: fadeInRight 1s ease-out forwards;
  opacity: 0;
  animation-delay: 0.5s;
}
.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .about-section .about-content {
    flex-direction: column;
  }
  .about-text h2 {
    font-size: 2rem;
  }
}

.production-section {
  background: #fff;
  padding: 80px 20px;
}
.production-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.production-image {
  flex: 1 1 320px;
  animation: fadeInLeft 1s ease-out forwards;
  opacity: 0;
  animation-delay: 0.2s;
}
.production-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
.production-text {
  flex: 1 1 320px;
  animation: fadeInRight 1s ease-out forwards;
  opacity: 0;
  animation-delay: 0.4s;
}
.production-text h2 {
  font-family: "Inter", sans-serif;
  font-size: 2.4rem;
  color: var(--green);
  margin-bottom: 16px;
}
.production-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-text);
  margin-bottom: 24px;
}
.production-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.production-features li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--dark-text);
  line-height: 1.4;
}
.production-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .production-content {
    flex-direction: column;
  }
  .production-text h2 {
    font-size: 2rem;
  }
}

.process-section {
  background: var(--light-green);
  padding: 80px 20px;
}
.process-section h2 {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 2.4rem;
  color: var(--green);
  margin-bottom: 40px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.process-step {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
.process-step:nth-child(1) {
  animation-delay: 0.2s;
}
.process-step:nth-child(2) {
  animation-delay: 0.4s;
}
.process-step:nth-child(3) {
  animation-delay: 0.6s;
}
.process-step:nth-child(4) {
  animation-delay: 0.8s;
}

.process-step img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.process-step h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  color: var(--green);
  margin: 16px 0 8px;
}
.process-step p {
  font-size: 0.95rem;
  color: var(--dark-text);
  padding: 0 16px 24px;
  line-height: 1.5;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .process-step img {
    height: 140px;
  }
}

.sourcing-section {
  background: var(--light-green);
  padding: 80px 0;
}
.sourcing-section h2 {
  font-family: "Inter", sans-serif;
  font-size: 2.4rem;
  color: var(--green);
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}
.sourcing-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.sourcing-text {
  flex: 1 1 320px;
  animation: fadeInLeft 1s ease-out forwards;
  opacity: 0;
  animation-delay: 0.3s;
}
.sourcing-text p {
  font-size: 1rem;
  color: var(--dark-text);
  line-height: 1.6;
  margin-bottom: 24px;
}
.sourcing-list {
  list-style: none;
  padding: 0;
}
.sourcing-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--dark-text);
  line-height: 1.4;
}
.sourcing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.2rem;
}

.sourcing-image {
  flex: 1 1 320px;
  text-align: center;
  animation: fadeInRight 1s ease-out forwards;
  opacity: 0;
  animation-delay: 0.5s;
}
.sourcing-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .sourcing-content {
    flex-direction: column;
  }
  .sourcing-section h2 {
    font-size: 2rem;
  }
}

.plans-section {
  background: var(--light-green);
  padding: 80px 20px;
}
.plans-section h2 {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 2.4rem;
  color: var(--green);
  margin-bottom: 16px;
}
.plans-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 1rem;
  color: var(--dark-text);
  line-height: 1.6;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.plan-item {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
.plan-item:nth-child(1) {
  animation-delay: 0.2s;
}
.plan-item:nth-child(2) {
  animation-delay: 0.4s;
}
.plan-item:nth-child(3) {
  animation-delay: 0.6s;
}
.plan-item:nth-child(4) {
  animation-delay: 0.8s;
}
.plan-item:nth-child(5) {
  animation-delay: 1s;
}

.plan-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.plan-item h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 12px;
}

.plan-item p {
  font-size: 0.95rem;
  color: var(--dark-text);
  line-height: 1.4;
  margin-bottom: 20px;
}

.plan-btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s;
}
.plan-btn:hover {
  background: var(--accent);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .plan-image img {
    height: 160px;
  }
}

.balance-section {
  background: #fffcf7;
  padding: 80px 20px;
}
.balance-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.zigzag-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.zigzag-item.reverse {
  flex-direction: row-reverse;
}

.zigzag-image {
  flex: 1 1 320px;
  text-align: center;
}
.zigzag-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.zigzag-image img:hover {
  transform: scale(1.03);
}

.zigzag-text {
  flex: 1 1 320px;
}
.zigzag-text h2 {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.zigzag-text p {
  font-size: 1rem;
  color: var(--dark-text);
  margin-bottom: 24px;
}
.zigzag-text ul {
  list-style: none;
  padding: 0;
}
.zigzag-text li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--dark-text);
  line-height: 1.5;
}
.zigzag-text li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  color: var(--accent);
}

@media (max-width: 768px) {
  .zigzag-item,
  .zigzag-item.reverse {
    flex-direction: column;
  }
  .zigzag-text h2 {
    font-size: 1.75rem;
  }
}

.calculator-section {
  background: #fff;
  padding: 80px 20px;
}
.calculator-section h2 {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 2.2rem;
  color: var(--green);
  margin-bottom: 8px;
}
.calculator-section p {
  text-align: center;
  margin-bottom: 32px;
  color: var(--dark-text);
}
.calc-form {
  max-width: 600px;
  margin: 0 auto 40px;
}
.form-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.calc-form label {
  flex: 1 1 260px;
  font-size: 0.95rem;
  color: var(--dark-text);
}
.calc-form input,
.calc-form select {
  width: 100%;
  padding: 8px 12px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.calc-btn {
  display: block;
  margin: 0 auto;
  background: var(--green);
  color: #fff;
  padding: 12px 32px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}
.calc-btn:hover {
  background: var(--accent);
}
.results-table {
  max-width: 480px;
  margin: 0 auto;
  overflow-x: auto;
}
.results-table table {
  width: 100%;
  border-collapse: collapse;
}
.results-table th,
.results-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
.results-table th {
  background: var(--light-green);
  color: var(--dark-text);
}
.results-table td {
  color: var(--text-dark);
}

.testimonials-section {
  background: #fff;
  padding: 80px 20px;
}
.testimonials-section h2 {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 2.4rem;
  color: var(--green);
  margin-bottom: 40px;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}
.slide {
  flex: 0 0 100%;
  padding: 0 20px;
  box-sizing: border-box;
}
.slide blockquote {
  background: var(--light-green);
  border-left: 4px solid var(--green);
  padding: 24px;
  border-radius: 8px;
  font-style: italic;
  position: relative;
}
.slide blockquote p {
  margin-bottom: 16px;
  color: var(--dark-text);
}
.slide blockquote footer {
  display: block;
  text-align: right;
  color: var(--accent);
  font-weight: 600;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 2rem;
  color: var(--green);
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.slider-nav:hover {
  background: #fff;
}
.prev {
  left: 16px;
}
.next {
  right: 16px;
}

@media (max-width: 600px) {
  .slide blockquote {
    padding: 18px;
  }
  .slide blockquote p {
    font-size: 0.95rem;
  }
}

.benefits-section {
  background: var(--light-green);
  padding: 80px 20px;
}
.benefits-section h2 {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 2.4rem;
  color: var(--green);
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-item {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
.benefit-item:nth-child(1) {
  animation-delay: 0.2s;
}
.benefit-item:nth-child(2) {
  animation-delay: 0.4s;
}
.benefit-item:nth-child(3) {
  animation-delay: 0.6s;
}
.benefit-item:nth-child(4) {
  animation-delay: 0.8s;
}
.benefit-item:nth-child(5) {
  animation-delay: 1s;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}
.benefit-item h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  color: var(--dark-text);
  margin-bottom: 12px;
}
.benefit-item p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .benefit-icon {
    width: 48px;
    height: 48px;
  }
  .benefits-section h2 {
    font-size: 2rem;
  }
}

.order-contact-section {
  background: #fff;
  padding: 80px 20px;
}
.order-contact-section h2 {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 2.4rem;
  color: var(--green);
  margin-bottom: 40px;
}
.order-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.order-column h3 {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.order-steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin-bottom: 32px;
}
.order-steps li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--dark-text);
  line-height: 1.5;
}
.order-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.trial-offer {
  background: var(--light-green);
  padding: 16px 20px;
  border-left: 4px solid var(--green);
  border-radius: 6px;
}
.trial-offer h4 {
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 8px;
}
.trial-offer p {
  font-size: 1rem;
  color: var(--dark-text);
  line-height: 1.4;
}

.contact-column h3 {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.contact-list,
.delivery-terms {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}
.contact-list li,
.delivery-terms li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--dark-text);
  line-height: 1.5;
}
.contact-list li::before {
  content: "☎";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  color: var(--accent);
}
.delivery-terms li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  color: var(--green);
}

@media (max-width: 768px) {
  .order-contact-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 24px 20px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-links {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--dark-text);
  font-size: 0.95rem;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--green);
}
.footer-links .bar {
  color: #ccc;
  margin: 0 4px;
}
.footer-copy {
  color: #777;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .footer-links .bar {
    display: none;
  }
}

.plans-detailed-section {
  background: var(--light-green);
  padding: 80px 20px;
}
.plans-detailed-section .container {
  max-width: 1000px;
  margin: 0 auto;
}
.plans-detailed-section h2 {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 2.6rem;
  color: var(--green);
  margin-bottom: 40px;
}

.plan-detail-item {
  background: #fff;
  border-radius: 8px;
  padding: 32px 24px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.plan-detail-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.plan-detail-item h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.plan-detail-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-text);
  margin-bottom: 16px;
}

.learn-more-link {
  display: inline-block;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.learn-more-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 768px) {
  .plans-detailed-section h2 {
    font-size: 2rem;
  }
  .plan-detail-item {
    padding: 24px 16px;
  }
}

.plan-detail-section {
  background: var(--light-green);
  padding: 80px 20px;
}
.plan-detail-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.plan-detail-section h1 {
  font-family: "Inter", sans-serif;
  font-size: 2.8rem;
  color: var(--green);
  text-align: center;
  margin-bottom: 24px;
}

.plan-hero {
  text-align: center;
  margin-bottom: 32px;
}
.plan-hero img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.plan-detail-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.plan-detail-section h2 {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  color: var(--accent);
  margin: 32px 0 16px;
}

.plan-detail-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}
.plan-detail-section ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--dark-text);
  line-height: 1.5;
}
.plan-detail-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  color: var(--green);
}

.plan-detail-section table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.plan-detail-section th,
.plan-detail-section td {
  padding: 12px 8px;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
}
.plan-detail-section th {
  background: var(--light-green);
  color: var(--dark-text);
  font-weight: 600;
}

.plan-detail-section .btn {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--green);
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}
.plan-detail-section .btn:hover {
  background: var(--accent);
}

@media (max-width: 768px) {
  .plan-detail-section h1 {
    font-size: 2.2rem;
  }
  .plan-detail-section h2 {
    font-size: 1.4rem;
  }
  .plan-detail-section p,
  .plan-detail-section ul li {
    font-size: 0.95rem;
  }
  .plan-detail-section table th,
  .plan-detail-section table td {
    font-size: 0.9rem;
    padding: 10px 6px;
  }
  .plan-detail-section .btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

.faq-section {
  background: var(--light-green);
  padding: 80px 20px;
}
.faq-section h2 {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 2.4rem;
  color: var(--green);
  margin-bottom: 40px;
}
.faq-item {
  max-width: 800px;
  margin: 0 auto 16px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.faq-question {
  background: #fff;
  border: none;
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  font-size: 1rem;
  color: var(--dark-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}
.faq-question:hover {
  background: rgba(232, 245, 233, 0.5);
}
.faq-question .icon {
  transition: transform 0.3s;
}
.faq-question.active .icon {
  transform: rotate(90deg);
}
.faq-answer {
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.faq-answer p {
  margin: 0;
  padding: 0 24px 18px;
  line-height: 1.6;
  color: var(--text-dark);
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .faq-question {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
  .faq-answer p {
    padding: 0 18px 14px;
  }
}

.title_background {
  background: linear-gradient(
    90deg,
    var(--green) 0%,
    rgba(232, 245, 233, 0.8) 100%
  );
  padding: 60px 0;
}
.title_background .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.title_background .title {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  animation: slideInDown 0.8s ease-out forwards;
}

.text_background {
  background: var(--light-green);
  padding: 40px 0;
}
.text_background .container {
  max-width: 800px;
  margin: 0 auto;
}
.text_background .text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark-text);
  text-align: justify;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

@keyframes slideInDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .title_background .title {
    font-size: 1.6rem;
  }
  .text_background .text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

.delivery-terms-section {
  background: #fff;
  padding: 80px 20px;
}
.delivery-terms-section h2 {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 2.4rem;
  color: var(--green);
  margin-bottom: 16px;
}
.delivery-terms-section p {
  max-width: 700px;
  margin: 0 auto 32px;
  text-align: center;
  color: var(--dark-text);
  font-size: 1rem;
  line-height: 1.6;
}
.delivery-rules {
  max-width: 800px;
  margin: 0 auto 32px;
  list-style: none;
  padding: 0;
}
.delivery-rules li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}
.delivery-rules li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent);
  font-weight: bold;
}
.delivery-rules a {
  color: var(--green);
  text-decoration: underline;
}
.delivery-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--dark-text);
}
.delivery-note a {
  color: var(--accent);
}

@media (max-width: 768px) {
  .delivery-terms-section h2 {
    font-size: 2rem;
  }
  .delivery-terms-section p,
  .delivery-rules li {
    font-size: 0.95rem;
  }
}
