* {
  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: #fafafa;
}

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

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2d5a27;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
  padding: 120px 0 80px;
  text-align: center;
}

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

.hero-title {
  font-size: 3rem;
  color: #2d5a27;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
}

.cta-button {
  display: inline-block;
  background: #2d5a27;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #1e3d1a;
}

/* Sections */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2d5a27;
  margin-bottom: 50px;
  font-weight: 600;
}

/* Programs Section */
.programs {
  padding: 80px 0;
  background: white;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.program-card {
  background: #f8fdf8;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #e8f5e8;
  transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(45, 90, 39, 0.1);
}

.program-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.program-card h3 {
  font-size: 1.5rem;
  color: #2d5a27;
  margin-bottom: 15px;
}

.program-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.program-link {
  color: #2d5a27;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.program-link:hover {
  border-bottom-color: #2d5a27;
}

/* Expertise Section */
.expertise {
  padding: 80px 0;
  background: #f0f8f0;
}

.expertise-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.expertise-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: white;
}

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

.testimonial-card {
  background: #f8fdf8;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #2d5a27;
}

.testimonial-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: #2d5a27;
}

/* Blog Preview */
.blog-preview {
  padding: 80px 0;
  background: #f0f8f0;
}

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

.blog-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-card h3 {
  color: #2d5a27;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.blog-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-link {
  color: #2d5a27;
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form-section {
  padding: 80px 0;
  background: white;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #2d5a27;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 2px solid #e8f5e8;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: #2d5a27;
}

.submit-button {
  width: 100%;
  background: #2d5a27;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-button:hover {
  background: #1e3d1a;
}

.form-note {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-top: 15px;
}

/* Footer */
.footer {
  background: #2d5a27;
  color: white;
  padding: 50px 0 20px;
}

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

.footer-section h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-section p {
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.social-links a:hover {
  opacity: 0.8;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #4a7a44;
}

/* Additional styles for new pages */
.program-page {
  padding-top: 70px;
}

.program-hero {
  background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
  padding: 80px 0;
  text-align: center;
}

.program-hero h1 {
  font-size: 2.5rem;
  color: #2d5a27;
  margin-bottom: 20px;
}

.program-subtitle {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.program-content {
  padding: 80px 0;
}

.program-details h2 {
  color: #2d5a27;
  margin-bottom: 20px;
  font-size: 2rem;
}

.program-details h3 {
  color: #2d5a27;
  margin: 30px 0 15px;
  font-size: 1.3rem;
}

.program-details p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.program-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.program-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: #555;
}

.program-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2d5a27;
  font-weight: bold;
}

.program-cta {
  background: #f8fdf8;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin-top: 40px;
  border: 2px solid #e8f5e8;
}

.program-cta p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.blog-page {
  padding-top: 70px;
}

.blog-hero {
  background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
  padding: 80px 0;
  text-align: center;
}

.blog-hero h1 {
  font-size: 2.5rem;
  color: #2d5a27;
  margin-bottom: 20px;
}

.blog-hero p {
  font-size: 1.2rem;
  color: #555;
}

.blog-articles {
  padding: 80px 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.article-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #e8f5e8;
}

.article-card h2 {
  color: #2d5a27;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.article-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-meta {
  margin-bottom: 20px;
}

.article-date {
  color: #888;
  font-size: 0.9rem;
}

.article-link {
  color: #2d5a27;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.article-link:hover {
  border-bottom-color: #2d5a27;
}

.article-page {
  padding-top: 70px;
}

.article-content {
  padding: 80px 0;
}

.article-header {
  text-align: center;
  margin-bottom: 50px;
}

.article-header h1 {
  font-size: 2.5rem;
  color: #2d5a27;
  margin-bottom: 20px;
  line-height: 1.3;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
}

.article-body h2 {
  color: #2d5a27;
  margin: 40px 0 20px;
  font-size: 1.8rem;
}

.article-body p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.article-cta {
  background: #f8fdf8;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin-top: 50px;
  border: 2px solid #e8f5e8;
}

.contact-page {
  padding-top: 70px;
}

.contact-hero {
  background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
  padding: 80px 0;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5rem;
  color: #2d5a27;
  margin-bottom: 20px;
}

.contact-hero p {
  font-size: 1.2rem;
  color: #555;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  color: #2d5a27;
  margin-bottom: 20px;
}

.contact-info p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
}

.contact-item h4 {
  color: #2d5a27;
  margin-bottom: 5px;
}

.contact-item p {
  color: #666;
  margin: 0;
}

.contact-form-container {
  background: #f8fdf8;
  padding: 40px;
  border-radius: 12px;
  border: 2px solid #e8f5e8;
}

.contact-form h3 {
  color: #2d5a27;
  margin-bottom: 30px;
  text-align: center;
}

.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e8f5e8;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
  font-family: inherit;
}

.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2d5a27;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.form-disclaimer {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-top: 15px;
  line-height: 1.5;
}

.thank-you-page {
  padding-top: 70px;
}

.thank-you-content {
  padding: 80px 0;
  text-align: center;
}

.thank-you-message {
  max-width: 800px;
  margin: 0 auto;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 30px;
}

.thank-you-message h1 {
  font-size: 2.5rem;
  color: #2d5a27;
  margin-bottom: 30px;
}

.personalized-message {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
}

.next-steps {
  margin: 50px 0;
}

.next-steps h2 {
  color: #2d5a27;
  margin-bottom: 30px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.step {
  background: #f8fdf8;
  padding: 30px 20px;
  border-radius: 12px;
  border: 2px solid #e8f5e8;
}

.step-number {
  background: #2d5a27;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 15px;
}

.step h3 {
  color: #2d5a27;
  margin-bottom: 10px;
}

.step p {
  color: #666;
  font-size: 0.9rem;
}

.additional-resources {
  margin: 50px 0;
}

.additional-resources h2 {
  color: #2d5a27;
  margin-bottom: 20px;
}

.resource-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.resource-link {
  background: #2d5a27;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.3s;
}

.resource-link:hover {
  background: #1e3d1a;
}

.return-home {
  margin-top: 40px;
}

.legal-page {
  padding-top: 70px;
  padding-bottom: 80px;
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  font-size: 2.5rem;
  color: #2d5a27;
  margin-bottom: 10px;
  margin-top: 80px;
}

.last-updated {
  color: #888;
  font-style: italic;
  margin-bottom: 40px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  color: #2d5a27;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.legal-section h3 {
  color: #2d5a27;
  margin: 25px 0 15px;
  font-size: 1.2rem;
}

.legal-section p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.legal-section ul {
  margin: 15px 0;
  padding-left: 30px;
}

.legal-section li {
  color: #555;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .section-title {
    font-size: 2rem;
  }

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

  .nav-menu {
    gap: 15px;
  }

  .nav-menu a {
    font-size: 0.9rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

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

  .resource-links {
    flex-direction: column;
    align-items: center;
  }

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

  .article-header h1 {
    font-size: 2rem;
  }

  .program-hero h1,
  .blog-hero h1,
  .contact-hero h1,
  .thank-you-message h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }

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

  .section-title {
    font-size: 1.8rem;
  }

  .programs-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
