:root {
  --primary-color: #2C5D7C;
  --primary-dark: #1e3f54;
  --text-color: #333;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --border-color: #dee2e6;
}

* {
  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: var(--text-color);
  background-color: #fff;
  padding-top: 70px;
}

.navbar {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.navbar-brand:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.brand-logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  object-fit: contain;
}

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

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

.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 4rem 0;
  margin-bottom: 3rem;
}

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

.hero-section p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

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

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-section ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-section li {
  margin-bottom: 0.5rem;
}

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

.image-left {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
  max-width: 400px;
}

.image-right {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
  max-width: 400px;
}

.disclaimer-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.info-box {
  background-color: #e8f4f8;
  border: 1px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.faq-section {
  background-color: var(--bg-light);
  padding: 3rem 0;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.form-control {
  border: 1px solid var(--border-color);
  padding: 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(44, 93, 124, 0.25);
}

footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

footer a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

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

footer li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

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

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

.cookie-banner p {
  margin-bottom: 1rem;
}

.cookie-banner .btn {
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }
  
  .content-section h2 {
    font-size: 1.5rem;
  }
  
  .image-left,
  .image-right {
    float: none;
    margin: 1.5rem auto;
    max-width: 100%;
    display: block;
  }
  
  .hero-image {
    margin-top: 1.5rem;
  }
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
