/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  padding-top: 80px;
}

a {
  color: #007acc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.narrow {
  max-width: 800px;
}

/* Header */
.site-header {
  background-color: rgba(248, 249, 250, 0.95);
  border-bottom: 1px solid #e9ecef;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

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

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #007acc;
}

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

.nav a {
  color: #555;
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #007acc;
  color: #fff;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #005a99;
  text-decoration: none;
}

.btn.small {
  padding: 0.25rem 0.75rem;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #222;
}

.lead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #666;
}

.cta-row {
  display: flex;
  gap: 1rem;
}

.hero-visual img {
  width: 100%;
  border-radius: 8px;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #222;
}

.section p {
  margin-bottom: 1rem;
}

/* Cards */
.grid {
  display: grid;
  gap: 2rem;
  list-style: none;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s;
}

.card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 1rem;
  color: #007acc;
}

/* Footer */
.site-footer {
  background-color: #f8f9fa;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid #e9ecef;
}

.site-footer p {
  color: #666;
}

/* Responsive */
/* Team member images */
.team-member img {
  height: 200px;
  width: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .nav {
    flex-wrap: wrap;
  }

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