:root {
  --primary-color: #d4a024;
  --primary-dark: #b8881f;
  --primary-light: #e5b844;
  --text-dark: #2c2c2c;
  --text-light: #5a5a5a;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
}

* {
  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;
  font-size: 16px;
}

.navbar-brand {
  color: var(--primary-color) !important;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
}

.hero-section h1 {
  color: var(--text-dark);
  line-height: 1.2;
}

.hero-section .lead {
  color: var(--text-light);
  font-size: 1.15rem;
}

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

.section-title {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.card {
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-body {
  padding: 1.5rem;
}

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 160, 36, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 15px 40px;
  font-size: 1.1rem;
}

.shadow {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

.rounded {
  border-radius: 8px !important;
}

.bg-light {
  background-color: var(--bg-light) !important;
}

.instructor-card,
.testimonial-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instructor-card:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.instructor-card p,
.testimonial-card p {
  margin-bottom: 0.5rem;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.scenario-item {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scenario-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.faq-section {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

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

.recommendations-section {
  background: var(--bg-light);
  padding: 60px 0;
}

.final-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

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

.contact-info {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.contact-form-wrapper {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 12px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(212, 160, 36, 0.25);
}

.thank-you-content {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.footer {
  margin-top: 60px;
}

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

.footer a:hover {
  color: var(--primary-color) !important;
}

.text-white-50 {
  opacity: 0.7;
}

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

.custom-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

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

.alert {
  border-radius: 8px;
}

.table {
  background: #ffffff;
}

.table thead {
  background-color: var(--primary-color);
  color: #ffffff;
}

.table-bordered {
  border: 1px solid var(--border-color);
}

.text-justify {
  text-align: justify;
}

#cookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 44, 44, 0.98);
  color: #ffffff;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

#cookieConsent .container {
  max-width: 1200px;
}

#cookieConsent p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

#cookieConsent .btn {
  margin-right: 10px;
  margin-bottom: 10px;
}

#cookieConsent .btn-light {
  background-color: #ffffff;
  color: var(--text-dark);
}

#cookieConsent .btn-outline-light {
  border-color: #ffffff;
  color: #ffffff;
}

#cookieConsent .btn-outline-light:hover {
  background-color: #ffffff;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

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

  .btn-lg {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .scenario-grid {
    grid-template-columns: 1fr;
  }

  #cookieConsent .btn {
    width: 100%;
    margin-right: 0;
  }
}

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

  .display-4 {
    font-size: 2rem;
  }

  .instructor-card,
  .testimonial-card,
  .faq-item {
    padding: 1.5rem;
  }
}
