:root {
  --color-bg: #f8f8f8;
  --color-yellow: #ffde59;
  --color-green-dark: #00291f;
  --color-green: #005b45;
  --color-black: #111111;
  --color-black-deep: #000705;
  --color-text: #111111;
  --color-text-light: #000705;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--color-bg);
  min-height: 100vh;
  position: relative;
  color: var(--color-text);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  
  width: 200px;
  height: auto;
}

.menu {
  font-size: 1.1rem;
  color: var(--color-green-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  cursor: pointer;
}
.menu-icon {
  font-size: 1.5rem;
  margin-left: 4px;
  cursor: pointer;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 60vh;
  position: relative;
}

.center-box {
  
  background: transparent;
  border: none;
  border-radius: 6px;
  max-width: 900px;
  width: 90%;
  text-align: center;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeIn 1.1s cubic-bezier(.4,1.4,.6,1) 0.2s forwards;
}
@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: none;
  }
}
.center-box h1, .center-box p, .buttons {
  opacity: 0;
  transform: translateY(32px);
  animation: heroTextIn 0.9s cubic-bezier(.4,1.4,.6,1) forwards;
}
.center-box h1 { animation-delay: 0.5s; }
.center-box p { animation-delay: 0.7s; }
.buttons { animation-delay: 0.9s; }
@keyframes heroTextIn {
  to {
    opacity: 1;
    transform: none;
  }
}
.center-box h1 {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #000000;
  margin-bottom: 18px;
}
.center-box p {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #000000;
  margin-bottom: 32px;
  line-height: 1.5;
}
.center-box .highlight {
  color: #000000;
  font-weight: 800;
  text-shadow: none;
}
.buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.buttons a {
  background: var(--color-green);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  margin: 0 auto;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,41,31,0.07);
  text-decoration: none;
}
.buttons a:hover {
  background: var(--color-yellow);
  color: var(--color-black);
}

.blur-bg, .features-bg {
  display: none !important;
}

.menu-list {
  display: none;
  position: absolute;
  top: 60px;
  right: 60px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,41,31,0.12);
  padding: 16px 0;
  min-width: 160px;
  z-index: 100;
  list-style: none;
  margin: 0;
  border: 1.5px solid #e0e0e0;
}
.menu-list.open {
  display: block;
}
.menu-list li {
  padding: 0;
}
.menu-list li a {
  display: block;
  padding: 10px 22px;
  color: var(--color-green-dark);
  text-decoration: none;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 4px;
  background: none;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.menu-list li a:hover {
  background: var(--color-yellow);
  color: var(--color-black);
}

@media (max-width: 700px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 12px 0 12px;
  }
  .center-box {
    margin-top: 60px;
    padding: 18px 6px 28px 6px;
  }
  .feature-box {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 24px;
  }
  .feature-icon {
    min-width: 60px;
    display: none;
  }
  .feature-icon img {
    width: 60px;
    height: 60px;
  }
  .feature-content {
    align-items: flex-start;
  }
  .features {
    padding: 0 6px 40px 6px;
  }
  .container {
    flex-direction: column;
  }
  .text-section {
    width: 100%;
    max-width: 100%;
  }
}

.features {
  max-width: 1200px;
  margin: 60px auto 0 auto;
  padding: 0 24px 60px 24px;
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,41,31,0.04);
}
.features h2 {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 38px;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #00291f 40%, #005b45 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.feature-box {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  text-align: left;
  transition: none;
  gap: 44px;
  opacity: 0;
  transform: translateY(40px);
  animation: featureFadeIn 0.9s cubic-bezier(.4,1.4,.6,1) forwards;
}
.feature-box:nth-child(2) { animation-delay: 0.15s; }
.feature-box:nth-child(3) { animation-delay: 0.3s; }
.feature-box:nth-child(4) { animation-delay: 0.45s; }
@keyframes featureFadeIn {
  to { opacity: 1; transform: none; }
}
.feature-icon {
  min-width: 140px;
  margin-bottom: 0;
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s cubic-bezier(.4,1.4,.6,1), box-shadow 0.22s;
}
.feature-icon img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,41,31,0.13), 0 2px 8px rgba(0,0,0,0.08);
  background: #fffde9;
  transition: transform 0.22s cubic-bezier(.4,1.4,.6,1), box-shadow 0.22s;
  border: 3px solid #ffde59;
}
.feature-box:hover .feature-icon img {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 16px 48px rgba(0,41,31,0.18), 0 4px 16px rgba(0,0,0,0.13);
  border-color: #005b45;
  background: #e6fff5;
}
.feature-box h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #00291f 40%, #005b45 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.feature-box p {
  font-size: 1.08rem;
  color: #00291f;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(0,41,31,0.04);
}
.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 900px) {
  .feature-icon {
    min-width: 90px;
  }
  .feature-icon img {
    width: 70px;
    height: 70px;
  }
}

.bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: transparent;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(2px);
}

.features-alt {
  max-width: 1200px;
  margin: 60px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 0 24px 60px 24px;
}
.feature-row {
  display: flex;
  align-items: center;
  background: transparent;
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  border: 2.5px solid #ffde59;
  padding: 36px 36px;
  gap: 48px;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,1.4,.6,1), transform 0.8s cubic-bezier(.4,1.4,.6,1);
}
.feature-row.in-view {
  opacity: 1;
  transform: none;
}
.feature-row.reverse {
  flex-direction: row-reverse;
}
.feature-media {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-media img {
  width: 100%;
  max-width: 520px;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.13);
  background: #fff;
  transition: transform 0.22s cubic-bezier(.4,1.4,.6,1), box-shadow 0.22s;
}
.feature-media img:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.feature-info {
  flex: 1 1 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.feature-info h2 {
  font-size: 2rem;
  font-weight: 900;
  margin: 0 0 12px 0;
  color: #111111;
}
.feature-info p {
  font-size: 1.18rem;
  color: #23201e;
  margin: 0 0 18px 0;
  font-weight: 600;
}
.feature-btn {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border 0.18s;
  margin-top: 8px;
}
.feature-btn:hover {
  background: #fff;
  color: #23201e;
  border-color: #fff;
}
@media (max-width: 900px) {
  .feature-row, .feature-row.reverse {
    flex-direction: column !important;
    gap: 28px;
    padding: 24px 8px;
  }
  .feature-media img {
    max-width: 100%;
  }
}

.features-modern {
  max-width: 1200px;
  margin: 60px auto 0 auto;
  padding: 0 0 60px 0;
  background: #fff;
  border-radius: 32px;
}
.features-modern-row {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  padding: 48px 48px 48px 48px;
  border-radius: 32px;
}
.features-modern-media {
  flex: 1 1 48%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-modern-media img {
  width: 100%;
  max-width: 600px;
  max-height: 420px;
  border-radius: 32px;
  box-shadow: none;
  background: #f8f8f8;
  transition: opacity 0.7s cubic-bezier(.4,1.4,.6,1), transform 0.7s cubic-bezier(.4,1.4,.6,1);
  opacity: 1;
  transform: scale(1) translateX(0);
}
.features-modern-list {
  flex: 1 1 52%;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  padding-left: 0;
}
.feature-modern-item {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.08rem;
  font-weight: 600;
  color: #7a7a7a;
  padding: 14px 18px 14px 0;
  border-radius: 10px;
  background: none;
  position: relative;
  transition: background 0.18s, color 0.18s, opacity 0.5s, transform 0.5s;
  margin-bottom: 6px;
  opacity: 0.4;
  transform: translateY(24px);
  min-height: 48px;
}
.feature-modern-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #23201e;
}
.feature-modern-detail {
  font-size: 0.98rem;
  color: #23201e;
  font-weight: 500;
  margin-top: 10px;
  padding-top: 0;
  line-height: 1.5;
  background: none;
  border: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s, transform 0.5s;
}
@media (max-width: 900px) {
  .features-modern-row {
    flex-direction: column;
    gap: 28px;
    padding: 18px 4px;
  }
  .features-modern-media img {
    max-width: 100%;
    max-height: 260px;
  }
}

.feature-progress {
  width: 100%;
  height: 6px;
  background: #ececec;
  border-radius: 4px;
  margin-top: 16px;
  overflow: hidden;
  position: relative;
  display: block;
}
.feature-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ffde59 0%, #005b45 100%);
  border-radius: 4px;
  transition: width 0.2s linear;
  position: absolute;
  left: 0;
  top: 0;
}
.feature-modern-item:not(.active) .feature-progress-bar {
  width: 0% !important;
  transition: none;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f7f9;
  color: #333;
}

.hero {
  background: #222;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.feature-section, .container, .image-section, .text-section {
  background: none !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  gap: 40px;
  align-items: center;
}

.image-section {
  flex: 0 0 70%;
  max-width: 70vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-section img {
  width: 100%;
  max-width: 80vw;
  max-height: 70vh;
  border-radius: 32px;
  object-fit: contain;
  height: auto;
  transition: opacity 0.7s cubic-bezier(.4,1.4,.6,1), transform 0.7s cubic-bezier(.4,1.4,.6,1);
  opacity: 1;
  transform: scale(1) translateX(0);
}
.image-section img.transitioning {
  opacity: 0;
  transform: scale(1.12) translateX(60px);
}
.image-section img.showing {
  opacity: 1;
  transform: scale(1) translateX(0);
}

.text-section {
  flex-basis: 50%;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-group-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-yellow);
}

.feature-group-description {
  color: #555;
  margin-bottom: 24px;
  line-height: 1.6;
}

.item {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.item.transitioning {
  opacity: 0;
  transform: translateY(24px);
}

.item .number {
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0;
  color: #999;
}

.item .title {
  font-size: 1.05rem;
  font-weight: bold;
  margin: 2px 0 6px;
  color: #23201e;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
}

.item .description {
  display: none;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  transition: opacity 0.4s, max-height 0.4s;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

.item.active .description {
  display: block;
  opacity: 1;
  max-height: 300px;
  margin-top: 10px;
}

.inactive .title,
.inactive .number {
  color: #999;
}

.active {
  border-bottom: 2px solid #ff5a1f;
  padding-bottom: 10px;
}

.item.active.boxed {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--color-green-dark);
  border-radius: 0;
  box-shadow: none;
  padding-bottom: 22px; /* Adjust padding to align text */
}

.contact-section {
  width: 100%;
  background: var(--color-bg);
  padding: 80px 20px 40px 20px;
  margin-top: 64px;
  border-top: 2px solid #eee;
  text-align: center;
}
.contact-container {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.contact-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #005b45;
  margin-bottom: 18px;
}
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #005b45;
  border-radius: 7px;
  font-size: 1rem;
  font-family: inherit;
  background: #f8f8f8;
  color: #23201e;
  resize: none;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ffde59;
}
.contact-form button {
  background: #005b45;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s;
}
.contact-form button:hover {
  background: #ffde59;
  color: #005b45;
}
.contact-info {
  margin-top: 10px;
  color: #23201e;
  font-size: 1rem;
  text-align: center;
}
.contact-info a {
  color: #005b45;
  text-decoration: none;
  font-weight: 600;
}
.contact-info a:hover {
  text-decoration: underline;
}

.pricing-section {
  background: #fff;
  padding: 80px 20px;
}
.pricing-header h2 {
  font-size: 2.2rem;
  color: var(--color-green-dark);
  text-align: center;
  margin-bottom: 48px;
  font-weight: 700;
}
.pricing-cards {
  display: flex !important;
  justify-content: center !important;
  align-items: stretch; /* Make cards same height */
  gap: 30px !important;
  flex-wrap: nowrap; /* Prevent wrapping */
}
.pricing-card {
  background: #fff;
  border: 2px solid #000;
  border-radius: 8px;
  padding: 24px;
  text-align: left;
  flex: 1 1 300px; /* Flex properties for responsiveness */
  max-width: 360px;
  display: flex;
  flex-direction: column;
}
.pricing-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 8px;
}
.pricing-card p {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 24px;
  min-height: 50px;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}
.pricing-card ul li {
  font-size: 1rem;
  color: #343a40;
  margin-bottom: 12px;
  line-height: 1.5;
  text-indent: -1.4em;
  padding-left: 1.4em;
}
/* Remove all other pseudo-elements and buttons */
.price-container, .popular-tag, .pricing-button, .pricing-card ul li::before {
  display: none;
}

.info-boxes-section {
  padding: 40px 0;
}

.info-boxes-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.info-box {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-box-icon {
  margin-bottom: 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-box-icon i {
  font-size: 65px;
  color: #555;
}

/* Icon 1: Graph */
.icon-graph {
  width: 120px;
  height: 70px;
  border-left: 1px solid #888888;
  border-bottom: 1px solid #888888;
  position: relative;
  background-image:
    linear-gradient(to right, #cccccc 1px, transparent 1px),
    linear-gradient(to bottom, #cccccc 1px, transparent 1px);
  background-size: 25% 25%;
}
.graph-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #5b9dff;
  border-radius: 50%;
  transform: translate(-4px, -4px);
}

/* Icon 2: Wireframe */
.icon-wireframe {
  width: 140px;
  height: 80px;
  background: #fff;
  border: 1px solid #888888;
  border-radius: 8px;
  padding: 8px;
  position: relative;
  box-sizing: border-box;
}
.wireframe-header {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}
.wireframe-header .dot {
  width: 6px;
  height: 6px;
  background-color: #a9a9a9;
  border-radius: 50%;
}
.wireframe-content {
  display: flex;
  gap: 8px;
}
.wireframe-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wireframe-text .line {
  height: 5px;
  width: 90%;
  background-color: #a9a9a9;
  border-radius: 3px;
}
.wireframe-boxes {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wireframe-boxes .box {
  width: 28px;
  height: 22px;
  background-color: #a9a9a9;
  border-radius: 4px;
}
.hexagon {
  position: absolute;
  width: 12px;
  height: 14px;
  background-color: #1ed760;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.hexagon.top-right {
  top: 2px;
  right: 2px;
}
.hexagon.bottom-left {
  bottom: 2px;
  left: 2px;
}

/* Icon 3: Flowchart */
.icon-flowchart {
  width: 120px;
  height: 70px;
  position: relative;
}
.flow-node {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid #888888;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #555;
  background: #fff;
  transform: translate(-50%, -50%);
}

/* Icon 4: Scaling */
.icon-scaling {
  width: 120px;
  height: 70px;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  border-radius: 4px 4px 0 0;
  border: 1px solid #888888;
}
.scale-box {
  width: 25px;
  background-color: #a9a9a9;
  border-radius: 4px 4px 0 0;
  border: 1px solid #888888;
}

.info-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-black);
  margin-top: 0;
  margin-bottom: 12px;
}

.info-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.collapsible-toggle {
  background: none;
  border: 1px solid #ddd;
  padding: 8px 12px;
  width: 100%;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-green);
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-arrow {
  transition: transform 0.3s ease;
}

.collapsible-toggle.active .toggle-arrow {
  transform: rotate(180deg);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.feature-list li {
  padding: 6px 0 6px 15px;
  font-size: 0.95rem;
  color: #333;
  position: relative;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-green);
}

@media (max-width: 768px) {
  .bg-video {
    object-position: 50% 50%;
  }
  .header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 24px 12px 0 12px;
  }
  .header .menu span:first-child {
    display: none;
  }
  .menu-list {
    top: 50px;
    right: 20px;
  }
  main {
    padding-top: 20px;
  }
  .buttons {
    flex-direction: column;
    align-items: center;
  }
  .buttons a {
    width: 80%;
    text-align: center;
  }
  .center-box h1 {
    font-size: 1.8rem;
  }
  .info-boxes-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .info-box {
    width: 90%;
    max-width: 400px;
  }
  .info-box-icon {
    height: 60px;
  }
  .icon-graph {
    width: 80px;
    height: 50px;
  }
  .icon-wireframe {
    width: 100px;
    height: 60px;
  }
  .icon-flowchart {
    width: 80px;
    height: 50px;
  }
  .icon-scaling {
    width: 80px;
    height: 50px;
  }
  .container {
    flex-direction: column;
  }
  .text-section {
    padding-left: 0;
    max-width: 100%;
  }
  .pricing-cards {
    flex-direction: column !important;
    align-items: center;
    gap: 20px;
    overflow-x: visible;
  }
  .pricing-card {
    width: 90%;
    max-width: 400px;
  }
  .feature-box {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
  }
  .feature-icon {
    min-width: auto;
    display: block;
  }
  .center-box {
    margin-top: 40px;
    padding: 18px 6px 28px 6px;
  }
}

.why-us-section {
  padding: 80px 60px;
  background: #fdfdfd;
}

.why-us-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-us-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 40px;
}

.why-us-content {
  display: flex;
  justify-content: space-between;
  text-align: left;
  gap: 40px;
}

.why-us-main-text {
  flex-basis: 50%;
}

.why-us-main-text p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-text);
}

.why-us-value-points {
  flex-basis: 45%;
  background-color: #f7f9f9;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.why-us-value-points h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-top: 0;
  margin-bottom: 20px;
}

.why-us-value-points ul {
  list-style: none;
  padding-left: 0;
}

.why-us-value-points ul li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.why-us-value-points ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-green);
  font-weight: bold;
}

@media (max-width: 960px) {
  .container {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }
  .image-section {
    flex: 1 1 auto;
    max-width: 100%;
    padding-right: 0;
  }
  .image-section img {
    max-width: 100%;
    max-height: 400px;
  }
  .text-section {
    flex: 1 1 auto;
    max-width: 100%;
    padding-left: 0;
  }
  .info-boxes-container {
    grid-template-columns: 1fr 1fr;
  }
  .why-us-content {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 20px;
  }
  .center-box h1 {
    font-size: 1.6rem;
  }
  .info-boxes-container {
    grid-template-columns: 1fr;
  }
  .why-us-section {
    padding: 60px 20px;
  }
}

@media (max-width: 992px) {
  .pricing-cards {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }
}
