:root {
  --tangerine: #ff6600;
  --tangerine-gradient: linear-gradient(135deg, #ff6f0f, #f56201);
}

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

body {
  font-family: 'Fira Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

header {
  background: var(--tangerine-gradient);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.tagline {
  font-size: 1.2rem;
  opacity: 0.9;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

section {
  margin-bottom: 3rem;
}

a {
  color: var(--tangerine);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Dosis', sans-serif;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

h3 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

h4 {
  color: var(--tangerine);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.intro p {
  font-size: 2.2rem;
  max-width: 36em;
  margin: 1em auto;
  text-align: center;
  color: #666;
}

.team-member {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 8px;
}

.photo-container {
  flex-shrink: 0;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--tangerine);
  background: #e0e0e0;
}

.bio {
  flex: 1;
}

.bio p {
  color: #666;
  line-height: 1.7;
  
}

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

.service {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--tangerine);
}

.service h3 {
  color: var(--tangerine);
  margin-bottom: 0.5rem;
}

.service p {
  color: #666;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  .team-member {
    flex-direction: column;
    text-align: center;
  }

  .team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
  }

  main {
    padding: 1rem;
  }

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