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

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

.gradient-bg {
  background: linear-gradient(135deg, #fad0c4 0%, #fde4cf 100%);
}

.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e89d9f !important;
}

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

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

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 208, 196, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #2c3e50;
  padding: 2rem;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(255,255,255,0.5);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

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

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

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

.content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.table-responsive {
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.table {
  margin-bottom: 0;
}

.table thead {
  background: linear-gradient(135deg, #fad0c4 0%, #fde4cf 100%);
}

.table thead th {
  color: #2c3e50;
  font-weight: 600;
  border: none;
  padding: 1rem;
}

.table tbody td {
  padding: 1rem;
  vertical-align: middle;
}

.card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

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

.card-body {
  padding: 2rem;
}

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

.disclaimer-box p {
  margin-bottom: 0;
  color: #555;
  font-size: 0.95rem;
}

.cta-section {
  background: linear-gradient(135deg, #fad0c4 0%, #fde4cf 100%);
  padding: 3rem 0;
  text-align: center;
  border-radius: 8px;
  margin: 2rem 0;
}

.btn-custom {
  background: linear-gradient(135deg, #fad0c4 0%, #fde4cf 100%);
  border: none;
  color: #2c3e50;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  color: #2c3e50;
}

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

.footer h5 {
  color: #e89d9f;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.cookie-banner p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.cookie-banner button {
  background: #e89d9f;
  border: none;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cookie-banner button:hover {
  background: #d68588;
}

.accordion .card {
  margin-bottom: 1rem;
}

.accordion .card-header {
  background: linear-gradient(135deg, #fad0c4 0%, #fde4cf 100%);
  padding: 0;
  border: none;
}

.accordion .btn-link {
  color: #2c3e50;
  font-weight: 600;
  text-decoration: none;
  display: block;
  padding: 1rem;
  width: 100%;
  text-align: left;
}

.accordion .btn-link:hover {
  color: #e89d9f;
}

.form-control:focus {
  border-color: #e89d9f;
  box-shadow: 0 0 0 0.2rem rgba(232, 157, 159, 0.25);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1.25rem;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
}
