:root {
  --ice-blue: #d4f1f9;
  --ice-blue-dark: #7dd3f0;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --text-dark: #212529;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

.navbar {
  background: linear-gradient(135deg, var(--white) 0%, var(--ice-blue) 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.navbar-brand:hover {
  color: var(--ice-blue-dark);
}

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

.nav-link:hover {
  color: var(--ice-blue-dark);
}

.hero-section {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  padding: 4rem 0;
}

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

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  margin-top: 3rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

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

.info-box {
  background: linear-gradient(135deg, var(--ice-blue) 0%, var(--off-white) 100%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  border-left: 4px solid var(--ice-blue-dark);
}

.info-box h3 {
  margin-top: 0;
}

.disclaimer-section {
  background-color: var(--light-gray);
  border-radius: 12px;
  padding: 2rem;
  margin: 3rem 0;
  border: 2px solid var(--ice-blue);
}

.cta-section {
  background: linear-gradient(135deg, var(--ice-blue) 0%, var(--off-white) 100%);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
}

.btn-custom {
  background: linear-gradient(135deg, var(--ice-blue-dark) 0%, var(--ice-blue) 100%);
  color: var(--text-dark);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(125, 211, 240, 0.4);
  color: var(--text-dark);
  text-decoration: none;
}

footer {
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--text-dark) 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

footer h4 {
  color: var(--ice-blue);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

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

footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

footer p {
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  background-color: rgba(212, 241, 249, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
  border: 1px solid var(--ice-blue);
}

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

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
}

.form-control {
  border-radius: 8px;
  border: 2px solid var(--light-gray);
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--ice-blue-dark);
  box-shadow: 0 0 0 0.2rem rgba(125, 211, 240, 0.25);
}

.contact-form {
  background-color: var(--off-white);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    padding: 2rem 0;
  }
  
  .content-section {
    padding: 2rem 0;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}
