/* Sections Shared */
.section-container {
  padding: 2rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  scroll-margin-top: 80px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--text-main);
}

/* Offerings Section */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.offering-card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.offering-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.offering-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.offering-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Why It Matters Section */
.why-matters-description {
  max-width: 800px;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
  color: var(--text-main);
  font-size: 1.1rem;
}

.why-bracket {
  width: 10px;
  height: 40px;
  border: 3px solid var(--accent-color);
  border-right: 0;
  border-radius: 20px 0 0 20px;
  flex-shrink: 0;
}

/* Benefits Section */
.bg-alt {
  background-color: var(--card-bg);
  /* White in Light, Dark Grey in Dark */
  width: 100%;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.benefits-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-main);
  font-weight: bold;
}

/* Who It's For Section */
.who-its-for-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 800px;
}

/* FAQ Section */
.faq-container {
  max-width: 100%;
}

.faq-item {
  margin-bottom: 2.5rem;
}

.faq-question {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
}

/* Footer */
.footer-bar {
  background-color: #000;
  color: #FFD700;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  font-weight: 600;
  font-size: 0.95rem;
}

[data-theme="dark"] .footer-bar {
  background-color: #000;
  border: 1px solid #333;
}

.footer-right {
  display: flex;
  gap: 0.5rem;
}

.footer-link {
  color: #FFD700;
  text-decoration: none;
  cursor: pointer;
}

.footer-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}