* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-forest: #1e3a2e;
  --color-sage: #4a6b5c;
  --color-cream: #f5f2ed;
  --color-warmgray: #58544b;
  --color-lightcream: #fdfcfa;
  --text-dark: #1a1a1a;
  --text-muted: #6b7280;
  --border-subtle: #e5e5e0;
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--color-lightcream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-hover);
}

ul {
  list-style: none;
}

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

.header {
  background-color: var(--color-lightcream);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.25rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

.site-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.site-name:hover {
  color: var(--color-forest);
}

.nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-list a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--color-forest);
  border-bottom-color: var(--color-forest);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  transition: all 0.3s ease;
}

.hero {
  background-color: var(--color-cream);
  color: var(--text-dark);
  padding: 8rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.hero-description {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 2px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.btn-primary {
  background-color: var(--color-forest);
  color: white;
  border-color: var(--color-forest);
}

.btn-primary:hover {
  background-color: var(--color-sage);
  border-color: var(--color-sage);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-forest);
  border-color: var(--color-forest);
}

.btn-secondary:hover {
  background-color: var(--color-forest);
  color: white;
  transform: translateY(-1px);
}

.features {
  padding: 6rem 0;
  background-color: var(--color-lightcream);
}

.features h2 {
  text-align: center;
  font-size: 2.75rem;
  margin-bottom: 3.5rem;
  color: var(--text-dark);
  font-weight: 500;
  letter-spacing: -0.02em;
}

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

.feature-card {
  background-color: white;
  padding: 0;
  border-radius: 0;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 100%;
  height: 240px;
  margin-bottom: 0;
  overflow: hidden;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0 2rem;
  padding-top: 1.5rem;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 2rem 2rem;
}

.cta {
  background-color: var(--color-forest);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.page-header {
  background-color: var(--color-cream);
  color: var(--text-dark);
  padding: 5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.page-header p {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.about-intro {
  padding: 6rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.about-text p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.mission-vision {
  padding: 6rem 0;
  background-color: var(--color-cream);
}

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

.mv-card {
  background-color: white;
  padding: 3rem;
  border-radius: 0;
  border: 1px solid var(--border-subtle);
  box-shadow: none;
}

.mv-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-forest);
  font-weight: 500;
}

.mv-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

.why-us {
  padding: 6rem 0;
}

.why-us h2 {
  text-align: center;
  font-size: 2.75rem;
  margin-bottom: 3.5rem;
  color: var(--text-dark);
  font-weight: 500;
  letter-spacing: -0.02em;
}

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

.why-card {
  text-align: center;
  padding: 2rem;
}

.why-card h4 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--color-forest);
  font-weight: 500;
}

.why-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.team {
  padding: 6rem 0;
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-member {
  background-color: white;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.team-member-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-info {
  padding: 1.5rem;
}

.team-member-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.team-role {
  color: var(--color-forest);
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.team-bio {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.team-more {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cream);
  color: var(--text-dark);
  border: 1px solid var(--border-subtle);
}

.team-more-content {
  padding: 2rem;
  text-align: center;
}

.team-more-text {
  font-size: 1.125rem;
  font-weight: 500;
}

.team-cta {
  background-color: var(--color-cream);
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.services {
  padding: 6rem 0;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-light);
  font-size: 1.125rem;
  line-height: 1.8;
}

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

.service-card {
  background-color: white;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.service-content > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  list-style: disc;
  margin-left: 1.5rem;
}

.service-features li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.services-cta {
  background-color: var(--color-cream);
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.contact {
  padding: 6rem 0;
}

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

.contact-form-section h2,
.contact-info-section h2 {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-forest);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-forest);
  font-weight: 500;
}

.contact-info-item p {
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-info-item a {
  color: var(--text-muted);
}

.contact-info-item a:hover {
  color: var(--color-forest);
}

.map-section {
  padding: 6rem 0;
  background-color: var(--color-cream);
}

.map-section h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 2.5rem;
  color: var(--text-dark);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.map-placeholder {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid var(--border-subtle);
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legal-content {
  padding: 6rem 0;
}

.legal-text {
  max-width: 900px;
  margin: 0 auto;
}

.legal-text h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.legal-text p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.legal-text ul {
  list-style: disc;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-text li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.footer {
  background-color: var(--color-forest);
  color: white;
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list a {
    padding: 1rem 20px;
    border-bottom: none;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

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

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

  .page-header h1 {
    font-size: 2.25rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .why-us-grid {
    grid-template-columns: 1fr;
  }

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

  .features h2,
  .why-us h2,
  .cta-content h2 {
    font-size: 2rem;
  }
}

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

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

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .features h2,
  .why-us h2,
  .cta-content h2 {
    font-size: 1.75rem;
  }
}
