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

:root {
  --primary-color: #2E8B57;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-light: #ecf0f1;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

html {
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  box-shadow: var(--shadow);
}

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

.logo-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

nav a {
  color: var(--text-dark);
  text-decoration: none;
  margin-left: 2rem;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--primary-color);
}

/* Main Content */
main {
  margin-top: 80px;
  padding-bottom: 3rem;
}

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

.container-12col {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

/* Typography */
h1 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 1.5rem 0 1rem 0;
  color: var(--text-dark);
}

h2 {
  font-size: 1.95rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 2rem 0 1rem 0;
  color: var(--text-dark);
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem 0;
  color: var(--text-dark);
}

p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

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

a:hover {
  color: #1e6b42;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.08) 0%, rgba(248, 249, 250, 1) 100%);
  padding: 4rem 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-light);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-text h1 {
  margin-top: 0;
}

.hero-image {
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* Card */
.card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.card-image {
  margin-bottom: 1.5rem;
}

.card-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.text-col {
  flex: 1;
}

.image-col {
  flex: 1;
  text-align: center;
}

.image-col img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-left {
  order: -1;
}

/* Button */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 1rem;
}

.btn:hover {
  background-color: #1e6b42;
  color: white;
  text-decoration: none;
}

.btn-secondary {
  background-color: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background-color: var(--border-light);
}

/* Section */
.section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-light);
}

.section:last-child {
  border-bottom: none;
}

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

.section-title h2 {
  margin: 0;
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: #ecf0f1;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

footer a {
  color: var(--primary-color);
}

footer a:hover {
  color: #45b066;
}

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

.footer-section h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

.footer-section p {
  margin: 0.5rem 0;
  color: #bdc3c7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  text-align: center;
  color: #95a5a6;
}

/* FAQ */
.faq-item {
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--primary-color);
  padding-left: 1.5rem;
}

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

.faq-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Blog Cards */
.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: var(--shadow);
}

.blog-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

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

.blog-card-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

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

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

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

/* Contact Info */
.contact-info {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.contact-info p {
  margin: 0.75rem 0;
}

/* Disclaimer */
.disclaimer {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 6px;
  padding: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: #856404;
}

.disclaimer h3 {
  margin-top: 0;
  color: #856404;
}

.disclaimer p {
  margin-bottom: 0;
}

.disclaimer-home {
  background-color: #e8f5e9;
  border: 1px solid var(--primary-color);
  color: #2c5f3f;
  text-align: center;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  margin: 2rem 0;
}

/* CTA */
.cta-section {
  text-align: center;
  padding: 3rem 0;
  background-color: var(--bg-light);
  border-radius: 8px;
  margin: 2rem 0;
}

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

/* Responsive */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .header-container {
    padding: 0.75rem 1rem;
  }

  nav a {
    margin-left: 1rem;
    font-size: 0.85rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  main {
    margin-top: 70px;
  }

  .container {
    padding: 0 1rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-image {
    text-align: center;
  }

  .two-column,
  .blog-cards,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .image-left {
    order: 0;
  }

  .container-12col {
    gap: 1.5rem;
  }
}

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

  h2 {
    font-size: 1.2rem;
  }

  nav a {
    margin-left: 0.75rem;
    font-size: 0.75rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .container-12col {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 2rem 0 1rem;
  }

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