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

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

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

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

.nav-link {
  color: #2c3e50 !important;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #f39c12 !important;
}

.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(44, 62, 80, 0.7) 100%);
  display: flex;
  align-items: center;
}

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

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

.hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-primary {
  background-color: #f39c12;
  border-color: #f39c12;
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #e67e22;
  border-color: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
}

.btn-secondary {
  background-color: #95a5a6;
  border-color: #95a5a6;
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #7f8c8d;
  border-color: #7f8c8d;
}

.btn-outline-primary {
  border-color: #f39c12;
  color: #f39c12;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #f39c12;
  border-color: #f39c12;
  color: #ffffff;
}

.section {
  padding: 5rem 0;
}

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

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

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header .lead,
.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.card-title {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 1rem;
}

.category-card {
  padding: 1.5rem;
}

.category-card h4 {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 1rem;
}

.category-card p {
  color: #7f8c8d;
}

.benefit-list {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.benefit-item {
  padding: 1.5rem;
  border-bottom: 1px solid #ecf0f1;
}

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

.benefit-item h5 {
  color: #f39c12;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

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

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

.tip-card h5 {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.testimonial-card p {
  font-style: italic;
  color: #34495e;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

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

.testimonial-author strong {
  color: #2c3e50;
  font-weight: 700;
}

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

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

.faq-item h5 {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: #7f8c8d;
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: #ffffff;
}

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

.cta-section .lead {
  color: #ffffff;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.cta-section .btn-primary {
  background-color: #2c3e50;
  border-color: #2c3e50;
}

.cta-section .btn-primary:hover {
  background-color: #34495e;
  border-color: #34495e;
}

.footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.footer h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.footer a:hover {
  color: #f39c12;
}

.footer ul {
  padding-left: 0;
}

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

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

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

.cookie-consent p {
  margin-bottom: 0;
}

.cookie-consent a {
  color: #f39c12;
  text-decoration: underline;
}

.contact-info {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
}

.contact-info h5 {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 1rem;
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thank-you-content h1 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.legal-content {
  font-size: 1rem;
  line-height: 1.8;
}

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

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

.legal-content h3 {
  color: #34495e;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.legal-content p {
  margin-bottom: 1rem;
  color: #34495e;
}

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

.legal-content ul li {
  margin-bottom: 0.5rem;
  color: #34495e;
}

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

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

.feature-box {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

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

.feature-box h5 {
  color: #f39c12;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-section {
    height: 500px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .lead {
    font-size: 1.1rem;
  }

  .page-header h1 {
    font-size: 2.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .nav-link {
    margin-left: 0;
  }

  .cookie-consent .btn {
    margin-top: 1rem;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 400px;
  }

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

  .btn-lg {
    padding: 0.625rem 1.5rem;
    font-size: 1rem;
  }

  .thank-you-content {
    padding: 2rem;
  }
}
