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

:root {
  --color-cream: #f5f3f0;
  --color-sand-gray: #f9f7f5;
  --color-dark-gray: #2d2d2d;
  --color-accent-green: #3d5a4d;
  --color-accent-blue: #5a7a8a;
  --color-white: #ffffff;
  --color-light-gray: #e8e6e3;
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark-gray);
  background-color: var(--color-sand-gray);
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  color: var(--color-accent-green);
}

h3 {
  font-size: 1.5rem;
  color: var(--color-dark-gray);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--color-accent-blue);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

button, .btn {
  background-color: var(--color-accent-green);
  color: var(--color-white);
  border: 1px solid var(--color-accent-green);
  padding: 0.75rem 1.5rem;
  border-radius: 3px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

button:hover, .btn:hover {
  background-color: var(--color-accent-blue);
  border-color: var(--color-accent-blue);
}

button.secondary, .btn.secondary {
  background-color: transparent;
  color: var(--color-accent-blue);
  border: 1px solid var(--color-accent-blue);
}

button.secondary:hover, .btn.secondary:hover {
  background-color: var(--color-accent-blue);
  color: var(--color-white);
}

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

.navbar {
  background-color: var(--color-white);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-light-gray);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent-green);
  text-decoration: none;
}

.navbar-nav {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar-nav a {
  color: var(--color-dark-gray);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
}

.hero {
  background-color: var(--color-cream);
  padding: 3rem 1rem;
  margin-bottom: 3rem;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-accent-blue);
  margin-bottom: 2rem;
}

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

.section {
  padding: 3rem 1rem;
  margin-bottom: 2rem;
}

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

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

@media (max-width: 768px) {
  .split-layout {
    grid-template-columns: 1fr;
  }
}

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

.wide-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wide-layout img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  max-height: 400px;
  object-fit: cover;
}

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

.card {
  background-color: var(--color-white);
  padding: 1.5rem;
  border-radius: 4px;
  border-left: 3px solid var(--color-accent-green);
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card h3 {
  margin-top: 0;
}

.faq-item {
  background-color: var(--color-white);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  border-left: 3px solid var(--color-accent-blue);
}

.faq-item h3 {
  margin-top: 0;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-dark-gray);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-light-gray);
  border-radius: 3px;
  font-size: 1rem;
  font-family: inherit;
}

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

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent-blue);
  box-shadow: 0 0 0 3px rgba(90, 122, 138, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

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

.checkbox-group label {
  margin-bottom: 0;
}

footer {
  background-color: var(--color-white);
  padding: 2rem 1rem;
  border-top: 1px solid var(--color-light-gray);
  margin-top: 3rem;
}

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

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--color-accent-green);
}

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

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

.footer-section a {
  color: var(--color-dark-gray);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-light-gray);
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--color-accent-blue);
}

.thank-you-message {
  text-align: center;
  padding: 3rem 1rem;
}

.thank-you-message h1 {
  color: var(--color-accent-green);
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--color-accent-blue);
  margin-bottom: 1rem;
}

.breadcrumb a {
  margin-right: 0.5rem;
}

#consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-light-gray);
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

#consent-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

#consent-banner p {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
}

#consent-banner button {
  white-space: nowrap;
}

@media (max-width: 768px) {
  #consent-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  #consent-banner.show {
    flex-direction: column;
  }
  
  #consent-banner button {
    width: 100%;
  }
}

.strip-banner {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  margin: 2rem 0;
}
