* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #e8e6e3;
  background-color: #1a1a1a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: linear-gradient(135deg, #2d4a2b 0%, #1a2e1a 100%);
  padding: 20px 0;
  border-bottom: 3px solid #8b4513;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  color: #f4a460;
  font-size: 28px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: #e8e6e3;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 8px 16px;
  border-radius: 4px;
}

.nav a:hover {
  color: #f4a460;
  background-color: rgba(139, 69, 19, 0.3);
}

.hero {
  background: linear-gradient(135deg, #3a5a38 0%, #2d4a2b 50%, #8b4513 100%);
  padding: 80px 0;
  text-align: center;
  border-bottom: 4px solid #f4a460;
}

.hero h2 {
  font-size: 48px;
  color: #f4a460;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.hero-text {
  font-size: 22px;
  color: #e8e6e3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section {
  padding: 60px 0;
}

.section-dark {
  background-color: #252525;
  border-top: 2px solid #8b4513;
  border-bottom: 2px solid #8b4513;
}

.section-title {
  font-size: 36px;
  color: #f4a460;
  margin-bottom: 40px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-block {
  background-color: #2a2a2a;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  border-left: 4px solid #8b4513;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.legal-block h3 {
  color: #f4a460;
  font-size: 24px;
  margin-bottom: 15px;
}

.legal-block p {
  margin-bottom: 12px;
  color: #d0d0d0;
}

.team-list {
  list-style: none;
  padding-left: 0;
}

.team-list li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  color: #e8e6e3;
  font-size: 18px;
}

.team-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #f4a460;
  font-weight: bold;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background: linear-gradient(135deg, #2d4a2b 0%, #1a2e1a 100%);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #8b4513;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card h3 {
  color: #f4a460;
  font-size: 26px;
  margin-bottom: 10px;
}

.role {
  color: #b8b8b8;
  font-style: italic;
}

.contact-info {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background-color: #2a2a2a;
  padding: 40px;
  border-radius: 8px;
  border: 2px solid #8b4513;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 18px;
}

.contact-email {
  color: #f4a460;
  font-weight: bold;
  font-size: 20px;
}

.footer {
  background: linear-gradient(135deg, #1a2e1a 0%, #0d1a0d 100%);
  color: #b8b8b8;
  text-align: center;
  padding: 30px 0;
  border-top: 3px solid #8b4513;
}

.footer p {
  margin: 5px 0;
}

@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 20px;
  }

  .nav {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero-text {
    font-size: 18px;
  }

  .section-title {
    font-size: 28px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}
