* {
  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: #f8f9fa;
}

.navbar {
  background: linear-gradient(135deg, #ffffff 0%, #f0f8f8 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: #3ba79d !important;
  transition: opacity 0.3s ease;
}

.navbar-brand:hover {
  opacity: 0.8;
}

.nav-link {
  color: #5a6c7d !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #3ba79d !important;
}

.hero-section {
  background: linear-gradient(135deg, #e8f5f4 0%, #f8f9fa 100%);
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

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

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

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

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3ba79d 0%, #7dd3c0 100%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #34495e;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

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

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

.content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.info-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f8f8 100%);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #3ba79d;
  margin-bottom: 1.5rem;
}

.info-card h3 {
  color: #3ba79d;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.info-card p {
  color: #5a6c7d;
  margin-bottom: 0;
}

.table-responsive {
  margin: 2rem 0;
  background: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.table {
  margin-bottom: 0;
}

.table thead th {
  background: linear-gradient(135deg, #3ba79d 0%, #4db8a8 100%);
  color: #ffffff;
  border: none;
  font-weight: 600;
  padding: 1rem;
}

.table tbody tr {
  transition: background-color 0.3s ease;
}

.table tbody tr:hover {
  background-color: #f0f8f8;
}

.table tbody td {
  padding: 1rem;
  color: #5a6c7d;
}

.cta-box {
  background: linear-gradient(135deg, #3ba79d 0%, #4db8a8 100%);
  color: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
  box-shadow: 0 8px 25px rgba(59,167,157,0.2);
}

.cta-box h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.cta-box p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.btn-light-custom {
  background-color: #ffffff;
  color: #3ba79d;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-light-custom:hover {
  background-color: #f0f8f8;
  color: #2d8278;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  text-decoration: none;
}

.disclaimer-box {
  background: #fff9e6;
  border: 2px solid #ffd966;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  color: #d68910;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-box p {
  color: #5a6c7d;
  margin-bottom: 0.5rem;
}

footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ecf0f1;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

footer h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

footer p, footer a {
  color: #bdc3c7;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

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

footer a:hover {
  color: #3ba79d;
  text-decoration: none;
}

footer ul {
  list-style: none;
  padding: 0;
}

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

.footer-bottom {
  border-top: 1px solid #465a69;
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  color: #95a5a6;
  font-size: 0.9rem;
}

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

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

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

.cookie-text {
  flex: 1;
  margin-right: 2rem;
  color: #5a6c7d;
}

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

.btn-accept-cookies {
  background: #3ba79d;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-accept-cookies:hover {
  background: #2d8278;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .cta-box {
    padding: 2rem 1rem;
  }
  
  .cta-box h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .content-box {
    padding: 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
}
