:root {
  --primary-gradient-start: #f0f8ff;
  --primary-gradient-end: #e6f0fa;
  --text-dark: #2c3e50;
  --text-light: #5a6c7d;
  --accent-blue: #4a90e2;
  --white: #ffffff;
  --light-gray: #f8f9fa;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
  min-height: 100vh;
}

.navbar {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-blue);
}

.hero-section {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.7) 0%, rgba(230, 240, 250, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
}

.hero-overlay h1 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  margin: 0;
}

.content-section {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

h1, h2, h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

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

h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin-top: 1.5rem;
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

.table {
  margin: 1.5rem 0;
  background: var(--white);
}

.table thead th {
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
  color: var(--text-dark);
  font-weight: 600;
  border: none;
}

.table tbody tr {
  border-bottom: 1px solid #e9ecef;
}

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

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

.disclaimer-box p {
  color: #5d4037;
  margin-bottom: 0.5rem;
}

.info-box {
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid var(--accent-blue);
}

.cta-soft {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent-blue);
  color: var(--white);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 1rem;
}

.cta-soft:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
  color: var(--white);
  text-decoration: none;
}

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

.footer h5 {
  color: var(--accent-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--accent-blue);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #e9ecef;
  color: var(--text-light);
  font-size: 0.9rem;
}

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

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

.cookie-banner p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.cookie-banner button {
  background: var(--accent-blue);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

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

.form-control:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.btn-primary {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  font-weight: 500;
  padding: 0.75rem 2rem;
}

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

@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 1.75rem;
  }
  
  .content-section {
    padding: 1.5rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-image {
    height: 300px;
  }
}
