/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

/* Header and Navigation */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c5530;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #2c5530;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  color: #2c5530;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.cta-button,
.submit-button {
  display: inline-block;
  background: #2c5530;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover,
.submit-button:hover {
  background: #1e3a21;
}

.secondary-button {
  display: inline-block;
  background: transparent;
  color: #2c5530;
  padding: 12px 30px;
  text-decoration: none;
  border: 2px solid #2c5530;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-left: 1rem;
}

.secondary-button:hover {
  background: #2c5530;
  color: white;
}

.read-more {
  color: #2c5530;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

.read-more:hover {
  text-decoration: underline;
}

/* Sections */
.guides,
.benefits,
.reviews,
.cta-section,
.contact-form-section {
  padding: 4rem 0;
}

.guides h2,
.benefits h2,
.reviews h2,
.cta-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #2c5530;
  margin-bottom: 3rem;
}

/* Grids */
.guides-grid,
.benefits-grid,
.reviews-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.guides-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.reviews-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Cards */
.guide-card,
.benefit-item,
.review-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.guide-icon,
.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.guide-card h3,
.benefit-item h3 {
  color: #2c5530;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.reviewer {
  margin-top: 1rem;
  font-weight: 600;
  color: #2c5530;
}

.reviewer span {
  display: block;
  font-weight: normal;
  color: #666;
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  background: #2c5530;
  color: white;
  text-align: center;
}

.cta-section h2 {
  color: white;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-button {
  background: white;
  color: #2c5530;
}

.cta-section .cta-button:hover {
  background: #f8f9fa;
}

/* Forms */
.contact-form-section {
  background: white;
  text-align: center;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2c5530;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  color: #2c5530;
  margin-bottom: 0.5rem;
}

/* Page Headers */
.page-header {
  background: #2c5530;
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Blog and Articles */
.blog-articles {
  padding: 4rem 0;
}

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

.article-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-card h2 {
  color: #2c5530;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: #666;
}

.blog-article {
  padding: 4rem 0;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.article-header h1 {
  color: #2c5530;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.article-content h2 {
  color: #2c5530;
  margin: 2rem 0 1rem 0;
  font-size: 1.6rem;
}

.article-content h3 {
  color: #2c5530;
  margin: 1.5rem 0 0.5rem 0;
  font-size: 1.3rem;
}

.article-content p {
  margin-bottom: 1rem;
}

.article-cta {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  margin: 3rem 0;
}

.article-cta h3 {
  color: #2c5530;
  margin-bottom: 1rem;
}

/* CTA Boxes */
.cta-box {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  margin: 3rem 0;
}

.cta-box h3 {
  color: #2c5530;
  margin-bottom: 1rem;
}

/* Thank You Page */
.thank-you-section {
  padding: 6rem 0;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 2rem;
}

.thank-you-actions {
  margin-top: 2rem;
}

/* Legal Pages */
.legal-page {
  padding: 4rem 0;
  background: white;
}

.legal-page h1 {
  color: #2c5530;
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

.legal-page h2 {
  color: #2c5530;
  margin: 2rem 0 1rem 0;
  font-size: 1.4rem;
}

.legal-page h3 {
  color: #2c5530;
  margin: 1.5rem 0 0.5rem 0;
  font-size: 1.2rem;
}

.legal-page ul {
  margin: 1rem 0 1rem 2rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
}

.legal-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Footer */
footer {
  background: #2c5530;
  color: white;
  padding: 3rem 0 2rem 0;
}

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

.footer-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-contact h4,
.footer-links h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }

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

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

  .guides-grid,
  .benefits-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .secondary-button {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 2rem 0;
  }

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

  .guides,
  .benefits,
  .reviews,
  .cta-section {
    padding: 2rem 0;
  }
}
