:root {
  --primary-green: #4caf50;
  --primary-green-dark: #45a049;
  --light-green: #e8f5e9;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --white: #ffffff;
}

* {
  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: #333;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

.navbar {
  transition: all 0.3s ease;
}

.navbar-brand:hover .brand-name {
  color: var(--primary-green-dark);
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-green) !important;
}

.hero-section {
  position: relative;
  margin-top: -1px;
}

.hero-image {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.85) 0%, rgba(69, 160, 73, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
}

.benefits-list,
.audience-list,
.offering-list,
.consultant-role-list {
  list-style: none;
  padding-left: 0;
}

.benefits-list li,
.audience-list li,
.offering-list li,
.consultant-role-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.benefits-list li:before,
.audience-list li:before,
.offering-list li:before,
.consultant-role-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.2rem;
}

.topic-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.topic-card h5 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
  font-size: 1.2rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
}

.btn-success {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.page-header {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
}

.principle-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-green);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-5px);
}

.principle-card h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.contact-details h5 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-details a {
  color: var(--primary-green);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.thank-you-box {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.success-icon {
  display: flex;
  justify-content: center;
}

.policy-content h2 {
  color: var(--primary-green);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.policy-content h3 {
  color: var(--gray-800);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.policy-content p,
.policy-content li {
  margin-bottom: 1rem;
}

.policy-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.accordion .card {
  border: 1px solid var(--gray-200);
}

.accordion .card-header {
  background-color: var(--gray-100);
  padding: 0;
}

.accordion .btn-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  color: var(--gray-800);
  text-decoration: none;
  font-weight: 600;
}

.accordion .btn-link:hover {
  color: var(--primary-green);
  text-decoration: none;
}

footer {
  margin-top: auto;
}

footer h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1rem;
}

footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--light-green);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(52, 58, 64, 0.98);
  color: var(--white);
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-content a {
  color: var(--primary-green);
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
}

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

  .hero-content .lead {
    font-size: 1.1rem;
  }

  .hero-image {
    height: 400px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-image {
    height: 300px;
  }
}
