:root {
  --primary-bg: #F8F8F8;
  --primary-text: #3A4750;
  --accent-green: #7C9885;
  --accent-brown: #B2B09B;
  --border-light: #E0E0E0;
  --border-dark: #CCCCCC;
}

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

html, body {
  font-family: 'Georgia', 'Garamond', serif;
  color: var(--primary-text);
  background-color: var(--primary-bg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Trebuchet MS', 'Lucida Grande', sans-serif;
  color: var(--primary-text);
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.8rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

body {
  overflow-x: hidden;
}

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

nav.navbar {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar-brand {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-text);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 50px;
  margin-right: 1rem;
}

.nav-link {
  color: var(--primary-text);
  font-size: 1.05rem;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: var(--accent-green);
  border-bottom: 2px solid var(--accent-green);
}

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

footer {
  background-color: var(--primary-text);
  color: var(--primary-bg);
  padding: 4rem 2rem 2rem;
  margin-top: 6rem;
}

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

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

.footer-section a {
  color: var(--primary-bg);
  text-decoration: none;
  display: block;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-green);
}

.footer-bottom {
  border-top: 1px solid rgba(248, 248, 248, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
}

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

section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-light);
}

section:last-of-type {
  border-bottom: none;
}

.section-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 5rem 2rem;
}

.hero {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--primary-bg) 0%, #FFFFFF 100%);
  text-align: center;
}

.hero h1 {
  color: var(--primary-text);
  margin-bottom: 2rem;
}

.hero p {
  font-size: 1.3rem;
  color: var(--primary-text);
  max-width: 800px;
  margin: 0 auto 2rem;
}

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

.content-grid img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.content-text h2 {
  color: var(--primary-text);
}

.content-text p {
  color: var(--primary-text);
}

.card {
  background: white;
  border: 1px solid var(--border-light);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.card h3 {
  color: var(--primary-text);
  margin-bottom: 1rem;
}

.card p {
  color: var(--primary-text);
  font-size: 1rem;
}

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

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--accent-green);
  color: white;
  text-decoration: none;
  border: 2px solid var(--accent-green);
  border-radius: 4px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Trebuchet MS', sans-serif;
}

.cta-button:hover {
  background-color: var(--primary-text);
  border-color: var(--primary-text);
  color: white;
}

.cta-button-secondary {
  background-color: transparent;
  color: var(--accent-green);
  border: 2px solid var(--accent-green);
}

.cta-button-secondary:hover {
  background-color: var(--accent-green);
  color: white;
}

.list-styled {
  list-style: none;
  margin: 2rem 0;
}

.list-styled li {
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.list-styled li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-size: 1.2rem;
}

.quote-block {
  background-color: rgba(124, 152, 133, 0.1);
  border-left: 4px solid var(--accent-green);
  padding: 2rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--primary-text);
}

.disclaimer-block {
  background-color: rgba(178, 176, 155, 0.08);
  border: 1px solid var(--accent-brown);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-block h4 {
  color: var(--accent-brown);
  margin-bottom: 1rem;
}

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

table {
  width: 100%;
  border-collapse: collapse;
}

table th {
  background-color: var(--primary-text);
  color: var(--primary-bg);
  padding: 1rem;
  text-align: left;
  font-family: 'Trebuchet MS', sans-serif;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
}

table tr:hover {
  background-color: rgba(248, 248, 248, 0.8);
}

form {
  max-width: 600px;
  margin: 2rem 0;
}

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

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

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  color: var(--primary-text);
  transition: border 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 8px rgba(124, 152, 133, 0.2);
}

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

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

.blog-card {
  background: white;
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--primary-text);
}

.blog-card p {
  color: var(--primary-text);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.blog-card-meta {
  font-size: 0.85rem;
  color: var(--accent-brown);
  margin-bottom: 1rem;
}

.breadcrumb {
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--accent-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--primary-text);
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--primary-text);
  margin: 0 0.5rem;
}

.highlight {
  color: var(--accent-green);
  font-weight: 600;
}

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

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }

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

  .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
  }

  .hero {
    padding: 3rem 1rem;
  }

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

  section {
    padding: 3rem 0;
  }

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

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