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

body {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  background-color: #FAFAFA;
}

h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  color: #1A5C6B;
}

h2 {
  font-size: 1.9rem;
  margin-bottom: 20px;
  color: #1A5C6B;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #1A5C6B;
}

p {
  margin-bottom: 20px;
}

a {
  color: #1A5C6B;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a:hover {
  opacity: 0.8;
}

header {
  background-color: #fff;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1A5C6B !important;
}

.navbar-nav .nav-link {
  color: #333 !important;
  padding: 10px 20px !important;
  transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: #1A5C6B !important;
}

main {
  margin-top: 70px;
}

.hero-section {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 92, 107, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 0;
}

.content-section {
  padding: 60px 0;
  background-color: #fff;
}

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

.section-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  margin-bottom: 30px;
}

.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.content-image-left {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
  max-width: 45%;
}

.content-image-right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  max-width: 45%;
}

.disclaimer-box {
  background-color: #f0f8fa;
  border-left: 4px solid #1A5C6B;
  padding: 20px;
  margin: 40px 0;
  border-radius: 5px;
}

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

.faq-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  color: #1A5C6B;
  margin-bottom: 10px;
}

.cta-section {
  background-color: #1A5C6B;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
}

.btn-custom {
  background-color: #1A5C6B;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.btn-custom:hover {
  background-color: #134651;
  color: #fff;
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}

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

.contact-info {
  background-color: #f0f8fa;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

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

.contact-info p {
  margin-bottom: 10px;
}

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

footer h4 {
  color: #1A5C6B;
  margin-bottom: 20px;
}

footer a {
  color: #fff;
  display: block;
  margin-bottom: 10px;
}

footer a:hover {
  color: #1A5C6B;
}

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

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

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

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

.cookie-text {
  flex: 1;
  margin-right: 20px;
  margin-bottom: 10px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.btn-cookie {
  background-color: #1A5C6B;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.btn-cookie:hover {
  background-color: #134651;
}

.policy-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  margin-bottom: 30px;
}

.policy-content h2 {
  margin-top: 30px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero-section {
    height: 400px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

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

  .content-image-left,
  .content-image-right {
    float: none;
    max-width: 100%;
    margin: 0 0 20px 0;
  }

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

  .cookie-text {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
