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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #2d2d2d;
  line-height: 1.6;
  background-color: #fefefe;
}

.site-header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

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

.navbar-light .navbar-nav .nav-link {
  color: #2d2d2d;
  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: #f4c542;
}

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fff9e6 0%, #fff5d6 100%);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

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

.content-section.bg-light {
  background: linear-gradient(180deg, #fffbf0 0%, #fff9e6 100%);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-text {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.image-grid-2 img {
  border-radius: 8px;
}

.disclaimer-box {
  background: #fff9e6;
  border-left: 4px solid #f4c542;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.testimonials-section {
  padding: 5rem 0;
  background: #ffffff;
}

.testimonial-card {
  background: #fffbf0;
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
  border: 1px solid #f4c542;
}

.testimonial-text {
  font-size: 1rem;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: #2d2d2d;
  font-size: 0.95rem;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f4c542 0%, #e6b83a 100%);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.2rem;
  color: #3d3d3d;
  margin-bottom: 2rem;
}

.btn-primary {
  background: #2d2d2d;
  border: none;
  padding: 0.875rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.site-footer {
  background: #2d2d2d;
  color: #e0e0e0;
  padding: 4rem 0 2rem;
}

.footer-title {
  color: #f4c542;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-text {
  color: #b0b0b0;
  line-height: 1.8;
  font-size: 0.95rem;
}

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

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #4a4a4a;
  color: #909090;
}

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

.footer-legal a:hover {
  color: #f4c542;
}

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

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: #5a5a5a;
}

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

.value-item {
  background: #fffbf0;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #f4c542;
}

.value-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 1rem;
}

.value-text {
  color: #4a4a4a;
  line-height: 1.6;
}

.contact-info {
  background: #fffbf0;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #f4c542;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-label {
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-detail {
  color: #4a4a4a;
  line-height: 1.7;
}

.contact-detail a {
  color: #f4c542;
  text-decoration: none;
  font-weight: 500;
}

.contact-detail a:hover {
  text-decoration: underline;
}

.form-control {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #f4c542;
  box-shadow: 0 0 0 0.2rem rgba(244, 197, 66, 0.25);
}

.form-group label {
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 0.5rem;
}

.form-check-label {
  font-weight: 400;
}

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

.thank-you-icon {
  margin-bottom: 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 1.5rem;
}

.thank-you-text {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.thank-you-text a {
  color: #f4c542;
  font-weight: 600;
  text-decoration: none;
}

.thank-you-text a:hover {
  text-decoration: underline;
}

.legal-content {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

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

.legal-content a {
  color: #f4c542;
  font-weight: 500;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.disclaimer-emphasis {
  background: #fff9e6;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #f4c542;
}

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

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

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-link {
  color: #f4c542;
  text-decoration: underline;
}

.cookie-link:hover {
  color: #e6b83a;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

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

  .image-grid-2 img:first-child {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 1.85rem;
  }

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

  .page-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 1.85rem;
  }

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

  .cookie-banner .col-md-8,
  .cookie-banner .col-md-4 {
    text-align: center;
  }

  .cookie-banner .btn {
    margin-top: 1rem;
  }
}
