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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #333;
  line-height: 1.6;
}

header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

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

.nav-link {
  color: #555 !important;
  transition: color 0.3s;
  padding: 0.5rem 1rem !important;
}

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

.btn-primary {
  background: linear-gradient(135deg, #ff9999 0%, #ffb3b3 100%);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 153, 153, 0.3);
  background: linear-gradient(135deg, #ff8888 0%, #ffa3a3 100%);
}

.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #fff9f5 0%, #fef5f0 100%);
}

.hero-section h1 {
  font-weight: 700;
  color: #222;
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 1rem;
}

.content-section {
  padding: 80px 0;
}

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

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

.bg-warning-light {
  background-color: #fff3cd;
}

img {
  max-width: 100%;
  height: auto;
}

.rounded {
  border-radius: 10px;
}

.shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

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

.card-title {
  font-weight: 600;
  color: #333;
}

.accordion .card-header {
  border: none;
  padding: 0;
}

.accordion .btn-link {
  text-decoration: none;
  font-weight: 500;
  padding: 1rem;
}

.accordion .btn-link:hover {
  text-decoration: none;
  color: #ff9999 !important;
}

.alert-info {
  background-color: #e8f4f8;
  color: #333;
}

footer {
  margin-top: 0;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  color: #fff;
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin: 0;
  color: #fff;
}

.cookie-banner .btn-light {
  background: #fff;
  color: #333;
  border: none;
}

.cookie-banner .btn-outline-light {
  border-color: #fff;
  color: #fff;
}

.cookie-banner .btn-outline-light:hover {
  background: #fff;
  color: #333;
}

#formMessage {
  font-weight: 500;
}

#formMessage.success {
  color: #28a745;
}

#formMessage.error {
  color: #dc3545;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }

  .content-section {
    padding: 60px 0;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .text-md-right {
    text-align: left !important;
    margin-top: 1rem;
  }
}
