:root {
  --primary-color: #ffc107;
  --primary-dark: #ffa000;
  --text-dark: #212121;
  --text-light: #757575;
  --bg-light: #fafafa;
  --white: #ffffff;
  --border-color: #e0e0e0;
}

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

.navbar-brand {
  font-size: 1.5rem;
  color: var(--text-dark);
}

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

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-dark);
}

.hero-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.page-hero {
  padding: 60px 0;
  background-color: var(--bg-light);
}

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

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

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

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

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

.card-img-top {
  height: 250px;
  object-fit: cover;
}

.feature-box img,
.value-card img {
  max-height: 200px;
  object-fit: cover;
  width: 100%;
}

.testimonial-card {
  border-left: 4px solid var(--primary-color);
}

.info-card,
.value-card {
  transition: transform 0.3s ease;
}

.info-card:hover,
.value-card:hover {
  transform: translateY(-3px);
}

.disclaimer-box {
  border-left: 5px solid var(--primary-color);
}

.principle-list li {
  padding-left: 1.5rem;
  position: relative;
}

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

.faq-item {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

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

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--text-dark);
}

.footer {
  background-color: #2c2c2c;
  color: var(--white);
  padding: 60px 0 20px;
}

.footer h5 {
  color: var(--primary-color);
}

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

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

.footer ul {
  padding-left: 0;
}

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

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

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

.cookie-banner p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.cookie-banner .btn-outline-light {
  color: var(--white);
  border-color: var(--white);
}

.cookie-banner .btn-outline-light:hover {
  background-color: var(--white);
  color: var(--text-dark);
}

.policy-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.policy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-weight: 600;
}

.policy-content ul {
  margin-bottom: 1rem;
}

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

.bg-warning-light {
  background-color: #fff9e6;
}

.contact-item {
  padding: 1rem;
  background-color: var(--bg-light);
  border-radius: 8px;
}

.thank-you-box {
  min-height: 300px;
}

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

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

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

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

  .cookie-banner .btn {
    margin-top: 10px;
    width: 100%;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.shadow {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
