:root {
  --primary-bg: #F0F2F5;
  --accent-teal: #A8DADC;
  --accent-navy: #457B9D;
  --accent-red: #E63946;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --white: #ffffff;
  --border-color: #e0e0e0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

header {
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Lato', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-navy) !important;
}

.nav-link {
  color: var(--text-dark) !important;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.nav-link:hover {
  color: var(--accent-navy) !important;
}

.nav-link.active {
  color: var(--accent-navy) !important;
  border-bottom: 2px solid var(--accent-navy);
}

main {
  margin-top: 80px;
  background-color: var(--white);
}

section {
  padding: 5rem 0;
}

.section-light {
  background-color: var(--primary-bg);
}

.section-white {
  background-color: var(--white);
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/hero-landscape.jpg') center/cover;
  background-attachment: fixed;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 5rem 2rem;
  margin-top: 60px;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.two-column {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.column-left {
  flex: 0 0 45%;
}

.column-right {
  flex: 0 0 55%;
}

.card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 20px rgba(70, 123, 157, 0.15);
  transform: translateY(-4px);
}

.card-with-icon {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.card-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 12px 30px rgba(70, 123, 157, 0.2);
  border-color: var(--accent-navy);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
}

.feature-card h3 {
  color: var(--accent-navy);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--accent-navy);
  color: var(--white) !important;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
}

.btn:hover {
  background-color: var(--accent-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 57, 70, 0.3);
}

.btn-secondary {
  background-color: var(--accent-teal);
}

.btn-secondary:hover {
  background-color: var(--accent-navy);
}

.list-benefits {
  list-style: none;
  margin-top: 2rem;
}

.list-benefits li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-dark);
  font-size: 1rem;
}

.list-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-teal);
  font-weight: bold;
  font-size: 1.2rem;
}

.faq-section {
  margin-top: 3rem;
}

.accordion {
  background-color: var(--white);
}

.accordion .card {
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
  box-shadow: none;
}

.accordion .card-header {
  background-color: var(--white);
  border: none;
  padding: 0;
}

.accordion .card-header button {
  background-color: var(--primary-bg);
  color: var(--text-dark);
  text-align: left;
  width: 100%;
  padding: 1.2rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Lato', sans-serif;
}

.accordion .card-header button:hover {
  background-color: #e0e5eb;
  color: var(--accent-navy);
}

.accordion .card-header button[aria-expanded="true"] {
  background-color: var(--accent-navy);
  color: var(--white);
}

.accordion .card-body {
  background-color: var(--white);
  padding: 1.5rem;
  border-top: 2px solid var(--accent-teal);
}

.accordion .card-body p {
  color: var(--text-light);
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--accent-navy), var(--accent-teal));
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 8px;
  margin: 3rem 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--accent-teal);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--accent-teal);
}

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

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

.disclaimer p {
  margin: 0;
  color: var(--text-dark);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-navy);
  box-shadow: 0 0 0 3px rgba(70, 123, 157, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.alternating-items {
  margin-top: 2rem;
}

.alternating-item {
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  border-left: 4px solid var(--accent-navy);
}

.alternating-item:nth-child(odd) {
  background-color: var(--primary-bg);
}

.alternating-item:nth-child(even) {
  background-color: #f9f9f9;
}

.alternating-item h4 {
  color: var(--accent-navy);
  margin-bottom: 0.5rem;
}

.alternating-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

.icon-circle {
  width: 40px;
  height: 40px;
  background-color: var(--accent-teal);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  margin-right: 1rem;
}

.content-block {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin: 2rem 0;
}

.content-block.image-left {
  flex-direction: row-reverse;
}

.content-block img {
  width: 300px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.content-text {
  flex: 1;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  flex-wrap: wrap;
}

.cookie-banner.hidden {
  display: none !important;
}

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

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.cookie-btn {
  padding: 0.6rem 1.5rem;
  background-color: var(--accent-navy);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn:hover {
  background-color: var(--accent-red);
}

.cookie-btn.secondary {
  background-color: transparent;
  border: 1px solid var(--white);
}

.cookie-btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.thank-you-section {
  text-align: center;
  padding: 5rem 2rem;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background-color: var(--accent-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
  margin: 0 auto 2rem;
}

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

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  header {
    padding: 0.8rem 0;
  }

  .navbar-brand {
    font-size: 1.4rem;
  }

  main {
    margin-top: 60px;
  }

  section {
    padding: 3rem 0;
  }

  .hero-section {
    background-attachment: scroll;
    min-height: 400px;
    padding: 3rem 1rem;
  }

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

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

  .two-column {
    flex-direction: column;
    gap: 2rem;
  }

  .column-left,
  .column-right {
    flex: 0 0 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    min-width: 100px;
  }

  .content-block {
    flex-direction: column !important;
  }

  .content-block img {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section {
    margin-top: 50px;
  }

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

  .container-wide {
    padding: 0 1rem;
  }

  .nav-link {
    margin: 0;
    padding: 0.5rem 0;
    font-size: 0.9rem;
  }

  .cookie-banner {
    padding: 1rem;
    gap: 1rem;
  }

  .cookie-text p {
    font-size: 0.85rem;
  }

  .cookie-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
