/* 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: #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;
  top: 0;
  width: 100%;
  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 {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #2d5a27;
  font-weight: bold;
  font-size: 1.5rem;
}

.logo-icon {
  margin-right: 10px;
  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: #666;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #2d5a27;
  color: white;
}

.btn-primary:hover {
  background: #1e3d1b;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #f8f9fa;
  color: #2d5a27;
  border: 2px solid #2d5a27;
}

.btn-secondary:hover {
  background: #2d5a27;
  color: white;
}

.btn-text {
  background: none;
  color: #2d5a27;
  padding: 10px 0;
  text-decoration: underline;
}

/* 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: 1200px;
  margin: 0 auto;
}

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

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

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

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

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

/* 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: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* 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: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #2d5a27;
}

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

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

/* 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.08);
}

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

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

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

.form-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  color: #666;
  font-size: 1.1rem;
}

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

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

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

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

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

/* 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;
  color: #e8f5e8;
}

.social-links {
  display: flex;
  gap: 15px;
}

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

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

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

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #4a7c43;
  color: #e8f5e8;
}

/* 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 {
    display: none;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .programs,
  .expertise,
  .testimonials,
  .blog-preview,
  .contact-form-section {
    padding: 60px 0;
  }
}
