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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f8f9fa;
}

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

.navbar {
  background: linear-gradient(135deg, #e0c3fc 0%, #c3daff 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.navbar-nav .nav-link {
  color: #2c3e50 !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: opacity 0.3s;
}

.navbar-nav .nav-link:hover {
  opacity: 0.7;
}

.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(224, 195, 252, 0.85) 0%, rgba(195, 218, 255, 0.85) 100%);
  z-index: 2;
}

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

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

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

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

.content-section:nth-child(even) {
  background-color: #ffffff;
}

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

.card-custom {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s;
}

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

.card-header-custom {
  background: linear-gradient(135deg, #e0c3fc 0%, #c3daff 100%);
  border: none;
  border-radius: 10px 10px 0 0 !important;
  padding: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
}

.table-custom {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.table-custom thead {
  background: linear-gradient(135deg, #e0c3fc 0%, #c3daff 100%);
  color: #2c3e50;
}

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

.table-custom td {
  border-color: #e9ecef;
  padding: 1rem;
}

.btn-custom {
  background: linear-gradient(135deg, #e0c3fc 0%, #c3daff 100%);
  border: none;
  color: #2c3e50;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  transition: opacity 0.3s, transform 0.3s;
}

.btn-custom:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: #2c3e50;
}

.disclaimer-box {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  border-radius: 5px;
  margin: 2rem 0;
}

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

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

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

footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

footer a {
  color: #2c3e50;
  text-decoration: none;
  transition: opacity 0.3s;
}

footer a:hover {
  opacity: 0.7;
  text-decoration: none;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #e0c3fc 0%, #c3daff 100%);
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 9999;
  display: none;
}

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

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

.contact-form {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-control {
  border-radius: 5px;
  border: 1px solid #ced4da;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: #c3daff;
  box-shadow: 0 0 0 0.2rem rgba(195, 218, 255, 0.25);
}

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

  .hero-content p {
    font-size: 1rem;
  }

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

  footer {
    padding: 2rem 0 1rem;
  }
}

h1, h2, h3 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

.text-muted-custom {
  color: #6c757d;
  font-size: 0.9rem;
  font-style: italic;
}
