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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
}

.navbar {
  background-color: #ffffff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a !important;
  letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
  color: #1a1a1a !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffc107 !important;
}

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
  padding: 4rem 1rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

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

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-yellow {
  background-color: #ffc107;
  color: #1a1a1a;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-yellow:hover {
  background-color: #ffb300;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

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

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #666666;
  margin-bottom: 3rem;
}

.content-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.content-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.content-card p {
  color: #555555;
  line-height: 1.7;
}

.feature-box {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.feature-box h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  color: #1a1a1a;
}

.feature-box p {
  color: #666666;
  line-height: 1.7;
}

.image-container {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

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

.bg-light-gray {
  background-color: #f8f9fa;
}

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

.testimonial-card {
  background: #ffffff;
  border-left: 4px solid #ffc107;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
  font-style: italic;
  color: #555555;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: #1a1a1a;
}

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

.faq-item h5 {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: #666666;
  line-height: 1.7;
  margin: 0;
}

footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 3rem 0 1rem;
}

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

footer p,
footer a {
  color: #cccccc;
  text-decoration: none;
  line-height: 1.8;
}

footer a:hover {
  color: #ffc107;
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  color: #999999;
}

.form-control:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.alert-info {
  background-color: #fff9e6;
  border-color: #ffc107;
  color: #1a1a1a;
}

.disclaimer-box {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box p {
  margin: 0;
  color: #1a1a1a;
  line-height: 1.7;
}

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

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

.cookie-banner p {
  margin: 0 0 1rem;
  color: #ffffff;
}

.cookie-banner a {
  color: #ffc107;
  text-decoration: underline;
}

.btn-accept {
  background-color: #ffc107;
  color: #1a1a1a;
  border: none;
  padding: 0.5rem 1.5rem;
  margin-right: 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.btn-decline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

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

  .hero-section p {
    font-size: 1rem;
  }

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

  .image-container {
    height: 250px;
  }

  .image-container-large {
    height: 300px;
  }
}
