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

body {
  font-family: sans-serif;
  background: #f9f9f9;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  background: #1a3a2a;
  padding: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: #cde;
  text-decoration: none;
}

.nav-links li a:hover {
  color: white;
}

/* Main content */
.main-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero */
.hero {
  background: #e8f5e9;
  padding: 3rem 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.hero h1 {
  color: #1a3a2a;
  font-size: 2.2rem;
}

.hero p {
  color: #555;
  margin-top: 0.75rem;
  font-size: 1.1rem;
}

/* Sections */
.section {
  margin-bottom: 2rem;
}

.section h2 {
  color: #2e6b3e;
  margin-bottom: 0.5rem;
}

.section p {
  line-height: 1.7;
}

/* Team & Portfolio grids */
.team-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* Member & Company cards */
.member-card,
.company-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.member-card img,
.company-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.member-card h3,
.company-card h3 {
  margin-bottom: 0.25rem;
}

.role {
  color: #2e6b3e;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.bio,
.description {
  color: #555;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Sector badge */
.sector {
  display: inline-block;
  background: #e0f2e9;
  color: #1a5c30;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.78rem;
  margin-bottom: 0.5rem;
}

/* Fund overview */
.fund-overview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.fund-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.25rem;
}

.fund-card h3 {
  color: #2e6b3e;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.fund-card p {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Fund strategy */
.fund-strategy {
  margin-bottom: 2rem;
}

.fund-strategy h2 {
  color: #2e6b3e;
  margin-bottom: 0.5rem;
}

.fund-strategy p {
  line-height: 1.7;
}

/* Returns table */
.returns-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.returns-table th {
  background: #1a3a2a;
  color: white;
  padding: 0.75rem;
}

.returns-table td {
  padding: 0.75rem;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.returns-table tr:hover td {
  background: #f0f8f0;
}

/* Pricing box */
.pricing-box {
  background: #1a3a2a;
  color: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-box h2 {
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
}

.period {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Features section */
.features-section {
  margin-bottom: 2rem;
}

.features-section h2 {
  color: #2e6b3e;
  margin-bottom: 0.75rem;
}

.features-section ul {
  padding-left: 1.5rem;
}

.features-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Availability */
.availability-section {
  margin-bottom: 2rem;
  color: #555;
  line-height: 1.7;
}

/* Footer */
.footer {
  background: #1a3a2a;
  color: #aaa;
  text-align: center;
  padding: 1.25rem;
  margin-top: 3rem;
}
