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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #2c2c2c;
  line-height: 1.6;
  background-color: #ffffff;
}

.main-header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.brand-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2c2c2c;
  letter-spacing: -0.5px;
}

.navbar-light .navbar-nav .nav-link {
  color: #2c2c2c;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #f4b942;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 600px;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
}

.hero-content {
  color: #ffffff;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.section-padding {
  padding: 80px 0;
}

.page-header {
  background-color: #f8f9fa;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.info-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.info-icon {
  width: 60px;
  height: 60px;
  background: #f4b942;
  color: #2c2c2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.info-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c2c2c;
}

.benefit-item {
  background: #ffffff;
  padding: 1.5rem;
  border-left: 4px solid #f4b942;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}

.benefit-item:hover {
  background: #f8f9fa;
}

.benefit-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #2c2c2c;
}

.category-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

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

.category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.category-content {
  padding: 1.5rem;
}

.category-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #2c2c2c;
}

.who-benefits {
  margin-bottom: 1.5rem;
}

.who-benefits h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2c2c2c;
}

.tip-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  height: 100%;
  border-top: 4px solid #f4b942;
}

.tip-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #2c2c2c;
}

.testimonial-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #555;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: #2c2c2c;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: #777;
  font-size: 0.9rem;
}

.faq-item {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #2c2c2c;
}

.cta-section {
  background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
  color: #ffffff;
  padding: 80px 0;
}

.cta-section h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-section .lead {
  color: #f0f0f0;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: #f4b942;
  border-color: #f4b942;
  color: #2c2c2c;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-primary:hover {
  background-color: #e0a830;
  border-color: #e0a830;
  color: #2c2c2c;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 4px;
}

.btn-secondary:hover {
  background-color: #5a6268;
  border-color: #5a6268;
}

.main-footer {
  background-color: #2c2c2c;
  color: #ffffff;
  padding: 60px 0 20px;
}

.main-footer h5 {
  color: #f4b942;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f4b942;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: #999;
}

.contact-form-wrapper {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info-box {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #f4b942;
}

.contact-detail {
  margin-bottom: 1.5rem;
}

.contact-detail h5 {
  color: #2c2c2c;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-detail a {
  color: #2c2c2c;
  text-decoration: none;
}

.contact-detail a:hover {
  color: #f4b942;
}

.thank-you-content {
  padding: 3rem 0;
}

.policy-content h2 {
  color: #2c2c2c;
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  color: #2c2c2c;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content h4 {
  color: #2c2c2c;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

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

.policy-content li {
  margin-bottom: 0.5rem;
}

.principle-card,
.belief-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.principle-card h4,
.belief-card h4 {
  color: #2c2c2c;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c2c2c;
  color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.cookie-content a {
  color: #f4b942;
  text-decoration: underline;
}

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

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

  .hero-subtitle {
    font-size: 1rem;
  }

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

  .section-padding {
    padding: 50px 0;
  }

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

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }
}
