* {
  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: linear-gradient(135deg, #fff5f0 0%, #ffe4e1 100%);
  min-height: 100vh;
}

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

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

.navbar-nav .nav-link {
  color: #555;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #d4838f;
}

.hero-section {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,245,240,0.9) 0%, rgba(255,228,225,0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #333;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #d4838f;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.content-section {
  background: #fff;
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

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

.content-section p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-section ul {
  color: #555;
  line-height: 1.8;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

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

.table-responsive {
  margin: 1.5rem 0;
}

table {
  background: #fff;
}

table thead {
  background: linear-gradient(135deg, #fff5f0 0%, #ffe4e1 100%);
}

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

table tbody td {
  color: #555;
  padding: 1rem;
  border-color: #f5f5f5;
}

.disclaimer-box {
  background: linear-gradient(135deg, #fff9f7 0%, #fff5f3 100%);
  border-left: 4px solid #d4838f;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.disclaimer-box h3 {
  color: #d4838f;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

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

.cta-section {
  background: linear-gradient(135deg, #d4838f 0%, #c97885 100%);
  color: #fff;
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  margin: 3rem 0;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.btn-cta {
  background: #fff;
  color: #d4838f;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-cta:hover {
  background: #f5f5f5;
  color: #d4838f;
  text-decoration: none;
  transform: translateY(-2px);
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  color: #d4838f;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: #666;
}

footer {
  background: #fff;
  padding: 3rem 0 1rem 0;
  margin-top: 4rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

footer h5 {
  color: #d4838f;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

footer p, footer a {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.8;
}

footer a {
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

footer a:hover {
  color: #d4838f;
}

footer .copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #eee;
  color: #999;
  font-size: 0.85rem;
}

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

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

.cookie-banner p {
  margin-bottom: 1rem;
  color: #555;
}

.cookie-banner .btn {
  background: #d4838f;
  border: none;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 20px;
  transition: all 0.3s;
}

.cookie-banner .btn:hover {
  background: #c97885;
}

.form-control:focus {
  border-color: #d4838f;
  box-shadow: 0 0 0 0.2rem rgba(212,131,143,0.25);
}

.btn-primary {
  background: #d4838f;
  border-color: #d4838f;
  border-radius: 20px;
  padding: 0.6rem 2rem;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #c97885;
  border-color: #c97885;
}

.contact-info {
  background: linear-gradient(135deg, #fff5f0 0%, #ffe4e1 100%);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.contact-info h3 {
  color: #d4838f;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #555;
  margin-bottom: 0.5rem;
}

.educational-notice {
  background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f7 100%);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
  border-left: 4px solid #5a9fc7;
}

.educational-notice strong {
  color: #5a9fc7;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-section {
    height: 400px;
  }
  
  .content-section {
    padding: 1.5rem;
  }
  
  .content-section h2 {
    font-size: 1.5rem;
  }
  
  .cta-section {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 350px;
  }
  
  .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .content-section {
    padding: 1rem;
  }
}
