:root {
  --sage-green: #A8C4A2;
  --warm-taupe: #BFA98F;
  --deep-teal: #1F5C5A;
  --pale-oat: #F0E6D2;
  --text-dark: #2C2C2C;
  --text-light: #666666;
  --border-light: #E8E8E8;
}

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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  color: var(--text-dark);
  line-height: 1.75;
  font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Garamond', serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: 3.2rem;
}

h2 {
  font-size: 2.4rem;
  margin-top: 3rem;
}

h3 {
  font-size: 1.8rem;
  margin-top: 2rem;
}

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

a {
  color: var(--deep-teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--warm-taupe);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  background-color: #FAFAF8;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-right: 2rem;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.02);
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin-left: 2rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--deep-teal);
  border-bottom-color: var(--sage-green);
}

footer {
  background-color: var(--text-dark);
  color: #FFFFFF;
  padding: 4rem 0 2rem;
  margin-top: 6rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

footer h4 {
  color: var(--sage-green);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

footer a {
  color: var(--sage-green);
}

footer a:hover {
  color: var(--warm-taupe);
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #AAAAAA;
  font-size: 0.9rem;
}

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

section {
  padding: 6rem 0;
}

section:nth-child(even) {
  background-color: rgba(168, 196, 162, 0.08);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--pale-oat) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
}

.hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(31, 92, 90, 0.6), rgba(31, 92, 90, 0.6));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
}

.section-intro {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-intro p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.two-column img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

.table-responsive {
  margin: 3rem 0;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

thead {
  background-color: var(--deep-teal);
  color: #FFFFFF;
}

th, td {
  padding: 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

tbody tr:hover {
  background-color: rgba(168, 196, 162, 0.05);
}

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

.card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--sage-green);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.card h3 {
  margin-top: 0;
}

.card img {
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 6px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card p {
  flex-grow: 1;
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background-color: var(--deep-teal);
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--warm-taupe);
  transform: scale(1.04);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: var(--sage-green);
}

.btn-secondary:hover {
  background-color: var(--warm-taupe);
}

.faq-item {
  background: #FFFFFF;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  border-left: 4px solid var(--sage-green);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(168, 196, 162, 0.05);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(168, 196, 162, 0.12);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-teal);
  font-weight: bold;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer.show {
  padding: 1.5rem;
}

.faq-answer p {
  margin-bottom: 0;
}

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

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

input[type="email"],
textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-light);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-dark);
  background-color: #FFFFFF;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--deep-teal);
  box-shadow: 0 0 0 3px rgba(31, 92, 90, 0.1);
}

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

.contact-form-disclaimer {
  background-color: rgba(191, 169, 143, 0.1);
  border-left: 4px solid var(--warm-taupe);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.contact-form-disclaimer p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.disclaimer-block {
  background-color: rgba(168, 196, 162, 0.12);
  border: 1px solid var(--sage-green);
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 6px;
}

.disclaimer-block h3 {
  color: var(--deep-teal);
  margin-top: 0;
}

.breadcrumb {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--deep-teal);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.success-message {
  background-color: rgba(168, 196, 162, 0.15);
  border: 2px solid var(--sage-green);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin: 4rem 0;
}

.success-message h2 {
  color: var(--sage-green);
  margin-top: 0;
}

.success-message a {
  margin-top: 1.5rem;
  display: inline-block;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 999;
  display: none;
}

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

.cookie-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
}

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

.cookie-text a {
  color: var(--deep-teal);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background-color: var(--sage-green);
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: var(--deep-teal);
}

.cookie-reject {
  background-color: var(--border-light);
  color: var(--text-dark);
}

.cookie-reject:hover {
  background-color: #D0D0D0;
}

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

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  html, body {
    font-size: 16px;
  }

  section {
    padding: 3rem 0;
  }

  .hero {
    min-height: 400px;
  }

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

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

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-column.reverse {
    direction: ltr;
  }

  .navbar-nav .nav-link {
    margin-left: 1rem;
    font-size: 0.95rem;
  }

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

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

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

  table {
    font-size: 0.95rem;
  }

  th, td {
    padding: 0.75rem;
  }
}

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

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  html, body {
    font-size: 15px;
  }

  .navbar-brand {
    font-size: 1.2rem;
    margin-right: 1rem;
  }

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

  section {
    padding: 2rem 0;
  }

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

  .two-column {
    margin-bottom: 2rem;
  }
}
