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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a4d2e !important;
  letter-spacing: 0.5px;
}

.nav-link {
  color: #2c3e50 !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #1a4d2e !important;
}

.hero-section {
  padding: 120px 0 80px;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a4d2e;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section .lead {
  font-size: 1.125rem;
  color: #5a6c7d;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.content-section {
  padding: 60px 0;
}

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a4d2e;
  margin-bottom: 1.5rem;
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.content-section p {
  color: #5a6c7d;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.btn-primary {
  background-color: #1a4d2e;
  border-color: #1a4d2e;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0f3320;
  border-color: #0f3320;
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: #1a4d2e;
  border-color: #1a4d2e;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #1a4d2e;
  border-color: #1a4d2e;
  color: #ffffff;
}

.btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
}

.category-card,
.scenario-card,
.story-card,
.product-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover,
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.info-list,
.philosophy-list {
  list-style: none;
  padding-left: 0;
}

.info-list li,
.philosophy-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #5a6c7d;
}

.info-list li:before,
.philosophy-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #1a4d2e;
  font-weight: bold;
}

.instructor-quote {
  background: #f8f9fa;
  padding: 2rem;
  border-left: 4px solid #1a4d2e;
  margin: 2rem 0;
}

.instructor-quote p {
  font-size: 1.125rem;
  font-style: italic;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.instructor-quote footer {
  color: #1a4d2e;
  font-weight: 600;
}

.story-card footer {
  margin-top: 1rem;
  color: #1a4d2e;
  font-weight: 500;
}

.faq-section {
  margin-top: 2rem;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  color: #1a4d2e;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.footer {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer p {
  color: #b8c5d6;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #b8c5d6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: #ffffff;
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-consent p {
  margin: 0;
  color: #ffffff;
}

.cookie-consent a {
  color: #ffffff;
  text-decoration: underline;
}

.page-header {
  padding: 120px 0 60px;
  background-color: #f8f9fa;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a4d2e;
  margin-bottom: 1rem;
}

.page-header .lead {
  font-size: 1.125rem;
  color: #5a6c7d;
}

.contact-info {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
}

.contact-form-wrapper {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
}

.form-control {
  border: 1px solid #ced4da;
  padding: 0.75rem;
  border-radius: 4px;
}

.form-control:focus {
  border-color: #1a4d2e;
  box-shadow: 0 0 0 0.2rem rgba(26, 77, 46, 0.25);
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
}

.thank-you-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a4d2e;
}

.legal-page {
  padding: 120px 0 60px;
}

.legal-page h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a4d2e;
  margin-bottom: 0.5rem;
}

.legal-page h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a4d2e;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-page h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-page p,
.legal-page li {
  color: #5a6c7d;
  line-height: 1.7;
}

.legal-page ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.last-updated {
  color: #6c757d;
  font-style: italic;
  margin-bottom: 2rem;
}

.subtitle {
  color: #6c757d;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

img.rounded {
  border-radius: 8px;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .content-section h2 {
    font-size: 1.75rem;
  }

  .cookie-consent .text-right {
    text-align: left !important;
    margin-top: 1rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}
