* {
  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: #333;
  background-color: #fff;
}

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

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

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.9) !important;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,154,158,0.8) 0%, rgba(250,208,196,0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

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

.hero-content p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

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

.content-section h2 {
  font-size: 2rem;
  color: #ff9a9e;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #555;
}

.content-section ul {
  margin-bottom: 1.5rem;
}

.content-section ul li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0.5rem;
}

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

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

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

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

.table tbody td {
  padding: 1rem;
  border-color: #f0f0f0;
}

.disclaimer-box {
  background: #fff5f5;
  border-left: 4px solid #ff9a9e;
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 5px;
}

.disclaimer-box h3 {
  color: #ff9a9e;
  margin-top: 0;
}

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

.cta-box {
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
  margin: 3rem 0;
  color: #fff;
}

.cta-box h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-box p {
  color: #fff;
  margin-bottom: 0;
}

.btn-custom {
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255,154,158,0.3);
}

.btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,154,158,0.4);
  color: #fff;
}

footer {
  background: #333;
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

footer h5 {
  color: #fad0c4;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

footer p,
footer a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

footer a:hover {
  color: #fad0c4;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

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

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

.cookie-banner p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.form-control:focus {
  border-color: #ff9a9e;
  box-shadow: 0 0 0 0.2rem rgba(255,154,158,0.25);
}

.faq-section {
  margin: 3rem 0;
}

.faq-item {
  background: #f9f9f9;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border-left: 3px solid #ff9a9e;
}

.faq-item h4 {
  color: #ff9a9e;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.faq-item p {
  margin-bottom: 0;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-section {
    height: 400px;
  }
  
  .content-section h2 {
    font-size: 1.6rem;
  }
  
  .content-section h3 {
    font-size: 1.3rem;
  }
  
  .content-section p,
  .content-section ul li {
    font-size: 1rem;
  }
}
