* {
  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-color: #fff;
}

.site-header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  color: #4a6572;
}

.navbar-brand:hover {
  color: #4a6572;
}

.nav-link {
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #4a6572;
}

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

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
}

.hero-notice {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  display: inline-block;
}

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

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #4a6572;
  margin-bottom: 15px;
  margin-top: 25px;
}

.content-section p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 15px;
}

.content-section ul {
  margin-bottom: 20px;
  padding-left: 30px;
}

.content-section li {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 10px;
}

.info-box {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  margin-top: 25px;
  border-left: 4px solid #4a6572;
}

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

.disclaimer-section {
  padding: 60px 0;
  background-color: #f1f3f5;
}

.disclaimer-box {
  background-color: #fff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid #4a6572;
}

.disclaimer-box h2 {
  font-size: 1.75rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.disclaimer-box p {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.disclaimer-highlight {
  background-color: #4a6572;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
}

.disclaimer-highlight h2 {
  color: #fff;
  margin-bottom: 15px;
}

.disclaimer-highlight p {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.cta-section {
  padding: 60px 0;
  background-color: #4a6572;
  color: #fff;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 20px;
}

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

.btn-primary {
  background-color: #4a6572;
  border-color: #4a6572;
  padding: 12px 30px;
  font-size: 1.05rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #3a515e;
  border-color: #3a515e;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary {
  background-color: #fff;
  color: #4a6572;
  border-color: #fff;
}

.cta-section .btn-primary:hover {
  background-color: #f8f9fa;
  color: #4a6572;
  border-color: #f8f9fa;
}

.site-footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 50px 0 30px;
}

.site-footer h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #fff;
}

.site-footer p {
  font-size: 0.95rem;
  color: #ddd;
  margin-bottom: 10px;
}

.footer-notice {
  font-size: 0.9rem;
  font-style: italic;
  color: #aaa;
  padding: 10px 0;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #4a6572;
}

.copyright {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #444;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: #fff;
  padding: 20px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
  flex: 1;
}

.cookie-content a {
  color: #4a6572;
  text-decoration: underline;
}

.page-header {
  padding: 60px 0 40px;
  background-color: #f8f9fa;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.page-header .lead {
  font-size: 1.2rem;
  color: #555;
}

.principle-box {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid #4a6572;
}

.principle-box h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 10px;
  margin-top: 0;
}

.principle-box p {
  margin-bottom: 0;
}

.contact-info h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-top: 25px;
  margin-bottom: 10px;
}

.contact-info h3:first-child {
  margin-top: 0;
}

.form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 12px;
  font-size: 1rem;
}

.form-control:focus {
  border-color: #4a6572;
  box-shadow: 0 0 0 0.2rem rgba(74, 101, 114, 0.25);
}

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .content-section h2 {
    font-size: 1.75rem;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 50px 0;
  }

  .hero-title {
    font-size: 1.75rem;
  }
}
