* {
  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: #2d3748;
  background-color: #ffffff;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #4a9b9b;
}

.navbar-brand:hover {
  color: #3d8282;
}

.nav-link {
  color: #4a5568;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #4a9b9b;
}

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f5 100%);
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
}

.hero-section .lead {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 15px;
}

.disclaimer-text {
  font-size: 0.95rem;
  color: #718096;
  font-style: italic;
}

.page-header {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f5 100%);
  text-align: center;
}

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

.page-header .lead {
  font-size: 1.15rem;
  color: #4a5568;
}

.content-section {
  padding: 60px 0;
}

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}

.content-section p {
  margin-bottom: 15px;
  color: #4a5568;
}

.bg-light {
  background-color: #f7fafc;
}

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

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

.info-card h3 {
  font-size: 1.35rem;
  color: #4a9b9b;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 0.95rem;
  color: #4a5568;
}

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

.term-item {
  padding: 20px;
  background: #ffffff;
  border-left: 4px solid #4a9b9b;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.term-item h3 {
  font-size: 1.2rem;
  color: #4a9b9b;
  margin-bottom: 8px;
}

.term-item p {
  font-size: 0.9rem;
  color: #4a5568;
  margin-bottom: 0;
}

.disclaimer-box {
  padding: 30px;
  background: #fff8f0;
  border-left: 4px solid #d97706;
  border-radius: 6px;
  margin: 30px 0;
}

.disclaimer-box p {
  margin-bottom: 12px;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

.disclaimer-box strong {
  color: #92400e;
}

.cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #4a9b9b 0%, #3d8282 100%);
  color: #ffffff;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #e6ffff;
}

.btn-primary {
  background-color: #4a9b9b;
  border-color: #4a9b9b;
  color: #ffffff;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #3d8282;
  border-color: #3d8282;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 155, 155, 0.3);
}

.cta-section .btn-primary {
  background-color: #ffffff;
  color: #4a9b9b;
  border-color: #ffffff;
}

.cta-section .btn-primary:hover {
  background-color: #f7fafc;
  color: #3d8282;
  border-color: #f7fafc;
}

.contact-info {
  margin-top: 30px;
}

.contact-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #4a9b9b;
  margin-top: 25px;
  margin-bottom: 10px;
}

.contact-info p {
  color: #4a5568;
}

.form-group label {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
}

.form-control {
  border: 1px solid #cbd5e0;
  border-radius: 6px;
  padding: 12px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #4a9b9b;
  box-shadow: 0 0 0 3px rgba(74, 155, 155, 0.1);
}

.footer {
  background-color: #1a202c;
  color: #cbd5e0;
  padding: 50px 0 20px;
  margin-top: 60px;
}

.footer h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer p {
  font-size: 0.9rem;
  color: #cbd5e0;
  margin-bottom: 10px;
}

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

.footer a:hover {
  color: #63c1c1;
  text-decoration: underline;
}

.footer ul {
  padding-left: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

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

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

.cookie-consent p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-consent .btn {
  padding: 8px 24px;
}

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

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

  .content-section h2 {
    font-size: 1.75rem;
  }

  .content-section h3 {
    font-size: 1.3rem;
  }

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

  .cookie-consent .btn {
    width: 100%;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 50px 0;
  }

  .content-section {
    padding: 40px 0;
  }

  .page-header {
    padding: 40px 0 30px;
  }
}
