/* Base Styles */
:root {
  --primary-color: #2e7d32;
  --secondary-color: #1565c0;
  --accent-color: #f5f5f5;
  --text-color: #333333;
  --light-text: #ffffff;
  --dark-text: #212121;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --error-color: #f44336;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #ffffff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 15px;
  line-height: 1.2;
}

p {
  margin-bottom: 15px;
}

section {
  padding: 80px 0;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  color: #666;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.btn.primary:hover {
  background-color: #1b5e20;
}

.btn.secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn.secondary:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

/* Header */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo span {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-left: 10px;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
}

nav ul li a:hover {
  color: var(--primary-color);
}

#menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom right, #e8f5e9, #e3f2fd);
  text-align: center;
  padding: 100px 0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--dark-text);
}

.hero h1 span {
  color: var(--primary-color);
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.hero .buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Services Section */
.services {
  background-color: #ffffff;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  color: var(--dark-text);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.service-card:nth-child(2) .icon {
  color: var(--secondary-color);
}

.service-card:nth-child(3) .icon {
  color: #9c27b0;
}

.service-card:nth-child(4) .icon {
  color: #4caf50;
}

.service-card:nth-child(5) .icon {
  color: #ff9800;
}

.service-card:nth-child(6) .icon {
  color: #3f51b5;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.service-card p {
  color: #666;
  margin-bottom: 20px;
}

.service-card a {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.service-card a i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.service-card a:hover i {
  transform: translateX(5px);
}

/* Stats Section */
.stats {
  background-color: #f5f5f5;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat {
  padding: 20px;
}

.stat .number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat .label {
  font-size: 1.1rem;
  color: #666;
}

/* Why Choose Us Section */
.why-us {
  background-color: #ffffff;
}

.why-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.why-us-text h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.features {
  margin-top: 20px;
}

.features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.features li i {
  color: var(--primary-color);
  margin-right: 10px;
}

.cta-box {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: var(--light-text);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
}

.cta-box h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.cta-box p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.cta-box .btn {
  background-color: var(--light-text);
  color: var(--primary-color);
}

.cta-box .btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
  background-color: #212121;
  color: #ffffff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about p {
  color: #bdbdbd;
  margin-bottom: 20px;
}

.social {
  display: flex;
  gap: 15px;
}

.social a {
  color: #bdbdbd;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social a:hover {
  color: var(--light-text);
}

.footer-links h3,
.footer-contact h3 {
  color: var(--light-text);
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-links h3:after,
.footer-contact h3:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #bdbdbd;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--light-text);
}

.footer-contact p {
  color: #bdbdbd;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--primary-color);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #424242;
  color: #9e9e9e;
}

/* Page Header */
.page-header {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Service CTA */
.service-cta {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 60px;
}

.service-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.service-cta p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
  .why-us-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  #menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 0;
  }

  nav ul li a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-about {
    grid-column: span 1;
  }
  
  .hero .buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}