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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: #2c3e50;
  background-color: #fafaf8;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', serif;
  color: #1a2a2a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
  border-bottom: 1px solid #d4dcd4;
  padding-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

a {
  color: #6A8D73;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

a:hover {
  border-bottom-color: #6A8D73;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e6;
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a2a2a;
}

.logo img {
  width: 32px;
  height: 32px;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-size: 0.95rem;
  color: #2c3e50;
  font-weight: 500;
}

/* Main content */
main {
  margin-top: 70px;
  min-height: 100vh;
}

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

/* Hero Section */
.hero {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  padding: 8rem 1rem;
  position: relative;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 42, 42, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 3rem;
}

.hero p {
  color: #e8e8e6;
  font-size: 1.25rem;
}

/* Content Section */
.content-section {
  padding: 3rem 1rem;
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e6;
}

.content-section h2 {
  margin-top: 0;
}

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

.content-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-image {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  display: block;
}

.content-image.right {
  margin-left: auto;
}

/* FAQ Section */
.faq-section {
  padding: 3rem 1rem;
  background-color: #fafaf8;
}

.faq-item {
  background-color: #ffffff;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  border-left: 3px solid #6A8D73;
}

.faq-item h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

/* Blog Section */
.blog-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.blog-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8e8e6;
  transition: box-shadow 0.2s ease;
}

.blog-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.blog-card h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.blog-card p {
  font-size: 0.95rem;
  color: #666;
}

/* Links Section */
.links-section {
  padding: 2rem 1rem;
  background-color: #f5f5f3;
  text-align: center;
}

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

.link-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid #e8e8e6;
}

.link-card a {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 500;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

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

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d4dcd4;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  color: #2c3e50;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #6A8D73;
  box-shadow: 0 0 0 3px rgba(106, 141, 115, 0.1);
}

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

button[type="submit"] {
  background-color: #6A8D73;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button[type="submit"]:hover {
  background-color: #577860;
}

/* Footer */
footer {
  background-color: #1a2a2a;
  color: #b8c5b8;
  padding: 3rem 1rem 1rem;
  border-top: 1px solid #d4dcd4;
  margin-top: 3rem;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #2c3e50;
}

.footer-section h4 {
  color: #e8e8e6;
  margin-bottom: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 0.95rem;
}

.footer-section a {
  display: block;
  margin-bottom: 0.5rem;
  color: #b8c5b8;
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: #6A8D73;
  border-bottom-color: #6A8D73;
}

.footer-section p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #b8c5b8;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #7a8a7a;
}

/* Disclaimer Banner */
.disclaimer-banner {
  background-color: #f0f4f0;
  border-left: 3px solid #6A8D73;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-banner h3 {
  color: #1a2a2a;
  margin-top: 0;
}

.disclaimer-banner p {
  font-size: 0.95rem;
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a2a2a;
  color: #e8e8e6;
  padding: 1rem;
  z-index: 999;
  display: none;
}

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

#cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

#cookie-banner button {
  background-color: #6A8D73;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
}

#cookie-banner button:hover {
  background-color: #577860;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  header {
    padding: 0.75rem 0;
  }

  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: 4rem 1rem;
  }

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

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

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

  .content-image {
    max-width: 100%;
  }

  .content-image.right {
    margin-left: 0;
    margin-right: 0;
  }

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

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

  #cookie-banner button {
    align-self: flex-start;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.accent-color {
  color: #6A8D73;
}

.hidden {
  display: none;
}
