:root {
    --color-primary: #00bf02;
    --color-primary-dark: #00a002;
    --color-secondary: #ec4899;
    --color-text-dark: #1f2937;
    --color-text-light: #4b5563;
    --color-text-gray: #6b7280;
    --color-text-footer: #9ca3af;
    --color-white: #ffffff;
    --color-background-light: #f9fafb;
    --color-background-dark: #111827;
    --color-border: #e5e7eb;
    --font-main: 'Poppins', system-ui;
    --font-inter: 'Inter', system-ui;
}

body {
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  background-color: var(--color-white);
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: hidden; /* Prevents horizontal scroll if content slightly overflows due to rounding */
}

.container {
  width: 100%;
  max-width: 1152px; /* Default container width based on common content blocks */
  margin: 0 auto;
  padding: 0 16px; /* Basic horizontal padding for smaller screens */
  box-sizing: border-box;
}

.container-lg { /* For header/footer type content areas */
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}


h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-weight: 700;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--color-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  border: none;
}

.btn--primary:hover {
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.btn--secondary {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn--secondary:hover {
  background-color: rgba(79, 70, 229, 0.05);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 32px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  margin: 0 auto 48px auto; /* Increased bottom margin */
}

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }

.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.py-1 { padding-top: 8px; padding-bottom: 8px; }
.py-2 { padding-top: 16px; padding-bottom: 16px; }
.py-3 { padding-top: 24px; padding-bottom: 24px; }
.py-4 { padding-top: 32px; padding-bottom: 32px; }
.py-5 { padding-top: 64px; padding-bottom: 64px; }

.card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.05), 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 24px;
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
.icon-wrapper img {
  width: 20px; /* Adjust as needed */
  height: 20px; /* Adjust as needed */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .section-title {
    font-size: 30px;
  }
  .section-subtitle {
    font-size: 18px;
  }
  .container, .container-lg {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
  .section-subtitle {
    font-size: 16px;
  }
  .btn {
    font-size: 14px;
    padding: 10px 20px;
  }
  .d-flex.flex-column-md {
    flex-direction: column;
  }
  .gap-md-2 {
    gap: 16px;
  }
}