:root {
  --primary-color: #f4a900;
  --secondary-color: #ffc857;
  --dark-color: #2c3e50;
  --light-color: #fafafa;
  --text-color: #333333;
  --border-color: #e0e0e0;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
  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-color);
  line-height: 1.6;
  background-color: #ffffff;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.75rem;
  color: var(--primary-color);
}

.brand-text {
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-color);
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

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

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

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

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

.content-section.bg-light {
  background-color: var(--light-color);
}

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

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
}

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

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

.card-title {
  color: var(--dark-color);
  font-weight: 600;
  font-size: 1.25rem;
}

.benefit-box {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-5px);
}

.benefit-box h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.testimonial-text {
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 1rem;
}

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

.faq-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.faq-item h5 {
  color: var(--dark-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 4rem 0;
}

.cta-section h2 {
  color: white;
  font-weight: 700;
}

.cta-section .lead {
  color: white;
}

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

.btn-primary:hover {
  background-color: #d89200;
  border-color: #d89200;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(244, 169, 0, 0.3);
}

.page-header {
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.page-header h1 {
  color: var(--dark-color);
  font-weight: 700;
}

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

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

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

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

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

.contact-info-box {
  background: var(--light-color);
  padding: 2rem;
  border-radius: 8px;
}

.contact-detail strong {
  color: var(--dark-color);
  display: block;
  margin-bottom: 0.5rem;
}

.contact-detail p {
  margin-bottom: 0;
}

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

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

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

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

.policy-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
}

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

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

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

.important-notice {
  background: #fff9e6;
  border-left: 4px solid var(--primary-color);
  padding: 1rem;
  margin: 1.5rem 0;
  font-weight: 600;
}

.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

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

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

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

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

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

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

.cookie-banner a {
  color: var(--primary-color);
  text-decoration: underline;
}

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

.cookie-banner .btn-light:hover {
  background-color: #d89200;
  border-color: #d89200;
}

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

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

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

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

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

  .navbar-nav .nav-link {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .cookie-banner .btn {
    margin-top: 0.5rem;
    width: 100%;
  }
}
