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

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  background-color: #f9f8f7;
  color: #2c3e3a;
  line-height: 1.6;
  font-size: 16px;
}

.soft-bg {
  background-color: #f9f8f7;
}

.misty-bg {
  background-color: #e8ecf1;
}

.accent-turquoise {
  background-color: #5a9b9a;
}

.accent-sandy {
  background-color: #d4a574;
}

.text-dark {
  color: #1a2a2a;
}

.text-heading {
  color: #1a3a5a;
}

.link-color {
  color: #1a3a5a;
  text-decoration: none;
}

.link-color:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  color: #1a3a5a;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

a {
  color: #1a3a5a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background-color: #d4a574;
  color: #2c3e3a;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.btn:hover {
  background-color: #c59560;
  text-decoration: none;
}

.btn-secondary {
  background-color: transparent;
  color: #1a3a5a;
  border: 2px solid #1a3a5a;
}

.btn-secondary:hover {
  background-color: #f0f4f7;
}

header {
  background-color: #fff;
  border-bottom: 1px solid #e8ecf1;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a3a5a;
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  color: #2c3e3a;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #1a3a5a;
  text-decoration: none;
}

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

.hero {
  padding: 4rem 1rem;
  text-align: center;
  background-color: #f9f8f7;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #5a7a7a;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.hero-buttons {
  margin-top: 2rem;
}

.section {
  padding: 4rem 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin: 0 0 1rem 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-layout img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.wide-banner {
  width: 100%;
  max-width: 100%;
  margin: 2rem 0;
  border-radius: 8px;
  display: block;
}

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

.card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #5a9b9a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.card h3 {
  margin-top: 0;
  color: #1a3a5a;
}

.definition {
  background-color: #e8ecf1;
  padding: 1.5rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  border-left: 3px solid #5a9b9a;
}

.definition h4 {
  margin-top: 0;
  color: #1a3a5a;
  margin-bottom: 0.5rem;
}

.testimonial {
  background-color: #e8ecf1;
  padding: 2rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid #5a9b9a;
  font-style: italic;
  color: #2c3e3a;
}

.faq-item {
  background-color: #fff;
  border: 1px solid #e8ecf1;
  margin: 1.5rem 0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background-color: #f0f4f7;
  cursor: pointer;
  font-weight: 600;
  color: #1a3a5a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question:hover {
  background-color: #e8ecf1;
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  color: #2c3e3a;
  line-height: 1.6;
}

.faq-answer.active {
  display: block;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1a3a5a;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d0d8dd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  color: #2c3e3a;
  background-color: #fff;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #1a3a5a;
  box-shadow: 0 0 0 3px rgba(26, 58, 90, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

input[type="checkbox"] {
  margin-top: 0.25rem;
  cursor: pointer;
}

.checkbox-group label {
  margin: 0;
  font-weight: 400;
}

footer {
  background-color: #f0f4f7;
  border-top: 1px solid #e8ecf1;
  padding: 3rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-section h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #2c3e3a;
  text-decoration: none;
}

.footer-links a:hover {
  color: #1a3a5a;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #e8ecf1;
  padding-top: 2rem;
  text-align: center;
  color: #5a7a7a;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a2a2a;
  color: #fff;
  padding: 1.5rem;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-size: 0.95rem;
  line-height: 1.5;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

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

.cookie-banner a {
  color: #d4a574;
  text-decoration: none;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  background-color: #d4a574;
  color: #1a2a2a;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

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

.cookie-btn.secondary {
  background-color: transparent;
  border: 1px solid #d4a574;
  color: #d4a574;
}

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

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  nav {
    gap: 1rem;
    font-size: 0.9rem;
  }

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

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

  .split-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .section {
    padding: 2.5rem 1rem;
  }

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .hero {
    padding: 2rem 1rem;
  }

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

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

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