:root {
  --primary-color: #2d5a3d;
  --primary-hover: #234830;
  --secondary-color: #4a7c59;
  --accent-color: #6b9a76;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #dee2e6;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

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

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

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.site-header {
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
}

.navbar {
  padding: 1rem 0;
}

.brand-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.hero-section {
  position: relative;
  margin-bottom: 3rem;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
}

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

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

.content-section {
  margin-bottom: 0;
}

.content-section h2 {
  margin-bottom: 1.5rem;
}

.content-section img {
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.content-section img:hover {
  transform: scale(1.02);
}

.info-card,
.consideration-box,
.integration-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
}

.info-card:hover,
.consideration-box:hover,
.integration-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.info-card h3,
.consideration-box h4,
.integration-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.product-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.product-card img {
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.product-card .btn {
  margin-top: auto;
}

.instructor-insight {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.insight-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.instructor-name {
  font-weight: 600;
  color: var(--primary-color);
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
}

.testimonial-card p:first-child {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
}

.faq-section .card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.faq-section .card-header {
  background: white;
  border-bottom: none;
  padding: 0;
}

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

.faq-section .btn-link:hover {
  color: var(--primary-color);
}

.faq-section .card-body {
  padding: 1.25rem;
}

.cta-section.bg-primary {
  background-color: var(--primary-color);
}

.page-hero {
  margin-bottom: 0;
}

.values-box,
.approach-box {
  background: var(--bg-light);
  border-radius: 8px;
}

.values-list {
  list-style: none;
  padding-left: 0;
}

.values-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.values-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.instructor-role-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
}

.contact-section {
  min-height: 400px;
}

.contact-info h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.contact-item {
  padding-bottom: 1.5rem;
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(45, 90, 61, 0.25);
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 3rem;
}

.legal-section {
  min-height: 60vh;
}

.legal-section h2 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-section h3 {
  color: var(--secondary-color);
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.site-footer {
  margin-top: 4rem;
}

.footer-brand {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.site-footer h4 {
  color: white;
  font-size: 1.25rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: white;
}

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

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

.cookie-title {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.cookie-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.btn-cookie {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
}

.cookie-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.cookie-link:hover {
  color: white;
}

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

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

@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-image {
    height: 300px;
  }

  .content-section {
    padding: 3rem 0;
  }
}
