* {
  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;
}

.header-nav {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
}

.header-nav .navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0277BD;
  text-decoration: none;
}

.header-nav .navbar-brand:hover {
  color: #01579B;
}

.header-nav .nav-link {
  color: #333;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

.header-nav .nav-link:hover {
  color: #0277BD;
}

main {
  margin-top: 80px;
}

.hero-section {
  background: linear-gradient(135deg, #0277BD 0%, #01579B 100%);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

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

.hero-section p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 2rem;
}

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

.content-section:nth-child(even) {
  background-color: #f8f9fa;
}

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0277BD;
  margin-bottom: 1.5rem;
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

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

.content-section ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

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

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

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

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

.cta-section {
  background-color: #0277BD;
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.btn-cta {
  background-color: #fff;
  color: #0277BD;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-cta:hover {
  background-color: #f8f9fa;
  color: #01579B;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.disclaimer-box {
  background-color: #f8f9fa;
  border-left: 4px solid #0277BD;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  color: #0277BD;
  margin-bottom: 1rem;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0277BD;
}

.contact-form button {
  background-color: #0277BD;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #01579B;
}

.footer {
  background-color: #222;
  color: #fff;
  padding: 3rem 0 1rem;
}

.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #0277BD;
}

.footer p,
.footer a {
  color: #ccc;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #0277BD;
}

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

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

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #222;
  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: 0 0 1rem;
  font-size: 0.95rem;
}

.cookie-banner button {
  background-color: #0277BD;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.3s;
}

.cookie-banner button:hover {
  background-color: #01579B;
}

.faq-item {
  margin-bottom: 2rem;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h3 {
  color: #0277BD;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .content-section h2 {
    font-size: 1.75rem;
  }
  
  .content-image-left,
  .content-image-right {
    float: none;
    max-width: 100%;
    margin: 1rem 0;
  }
  
  .header-nav .navbar-brand {
    font-size: 1.25rem;
  }
}
