@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
  --primary-color: #2e4a45; /* The deep green */
  --primary-light: #436d65;
  --secondary-bg: #f4f6f5; /* Subtle off-white */
  --text-dark: #2c3e3a;
  --text-light: #ffffff;
  --transition: all 0.3s ease;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--secondary-bg);
  color: var(--text-dark);
  line-height: 1.6;
}

header {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 20px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  margin-left: 30px;
  font-size: 16px;
  font-weight: 400;
  transition: var(--transition);
}

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

.btn-primary {
  background-color: var(--text-light);
  color: var(--primary-color) !important;
  padding: 10px 20px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: #e5ebea !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero {
  background: linear-gradient(rgba(46, 74, 69, 0.85), rgba(46, 74, 69, 0.7)), url('images/hero_bg.png');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding: 120px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 30px auto;
  font-weight: 300;
  opacity: 0.95;
}

.section {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: var(--primary-color);
  text-align: center;
}

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

.card {
  background: white;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.02);
}

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

.card h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 22px;
}

.card p {
  color: #555;
  font-size: 16px;
}

.why ul {
  line-height: 2;
  font-size: 18px;
  max-width: 800px;
  margin: auto;
  list-style-type: none;
  padding: 0;
}

.why li {
  background: white;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
}

.why li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 15px;
  font-size: 20px;
}

footer {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 40px 20px;
  margin-top: 60px;
}

.footer-links {
  text-align: center;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  margin: 0 15px;
  font-size: 15px;
  transition: var(--transition);
}

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

.copyright {
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
}

/* Page Specific Styles */
.page-header {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 60px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 40px;
  margin: 0;
}

.content-block {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.content-block h2 {
  text-align: left;
  margin-top: 0;
}

.content-block p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

/* Mobile Responsive Styles */
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 28px;
  cursor: pointer;
  padding: 0;
}

@media (max-width: 950px) {
  .menu-btn {
    display: block;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    padding: 20px 0;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links a {
    margin: 15px 0;
    margin-left: 0;
    font-size: 18px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .section h2 {
    font-size: 28px;
  }
  
  .section {
    padding: 50px 20px;
  }
  
  .page-header h1 {
    font-size: 32px;
  }
  
  .content-block {
    padding: 25px;
  }
}
