@font-face {
  font-family: "ArbutusSlab";
  src: url("/fonts/ArbutusSlab-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

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

html {
  overflow-y: scroll;
}

body {
  margin: 0;
  font-family: "ArbutusSlab", serif;
  line-height: 1.6;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

nav {
  background-color: #fff;
  border-bottom: 1px solid #000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav h1 a {
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

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

.nav-menu a.active {
  color: #0066cc;
}

main {
  flex: 1;
}

.home-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 2rem 0;
}

.banner {
  width: 100%;
}

.banner-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.left-column {
  display: flex;
  flex-direction: column;
}

.profile-section {
  text-align: center;
  padding: 2rem;
}

.profile-image {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.profile-image img {
  font-size: 4rem;
  color: #000;
  max-width: 270px;
  border-radius: 135px;
  display: block;
}

.image-banner {
  position: absolute;
  width: 125px;
  top: 220px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0066cc;
  color: white;
  padding: 0.3rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 500;
  border-radius: 3px;
  z-index: 1;
}

.profile-section h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: #000;
}

.role {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #000;
}

.company {
  color: #666;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  font-size: 1.5rem;
  color: #0066cc;
}

.social-link:hover {
  opacity: 0.8;
}

.inline-icon-link {
  width: 16px;
  height: 16px;
  color: #0066cc;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  transition: opacity 0.2s ease;
  margin-bottom: 3px;
  margin-left: -2px;
}

.inline-icon-link:hover {
  opacity: 0.8;
}

.right-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-row h3 {
  margin-bottom: 1rem;
  color: #000;
  font-size: 1.2rem;
  border-bottom: 1px solid #000;
  padding-bottom: 0.5rem;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

.column h3 {
  margin-bottom: 1rem;
  color: #000;
  font-size: 1.1rem;
}

.column ul {
  list-style: none;
  padding-left: 0;
}

.column li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.column li:before {
  content: "•";
  color: #0066cc;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.about-section ul {
  list-style: none;
  padding-left: 0;
}

.about-section li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
  margin-left: 1rem;
}

.about-section li:before {
  content: "•";
  color: #0066cc;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.about-section p {
  margin-bottom: 0.5rem;
  color: #000;
}

.about-section details summary p {
  padding-left: 1rem;
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.services-left-column {
  display: flex;
  flex-direction: column;
}

.services-image {
  text-align: center;
  padding: 2rem;
}

.services-image img {
  max-width: 270px;
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.services-right-column {
  display: flex;
  flex-direction: column;
}

.services-right-column h1 {
  color: #000;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #000;
  padding-bottom: 0.5rem;
}

.page-content {
  padding: 2rem;
}

.page-content h1 {
  color: #000;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #000;
  padding-bottom: 0.5rem;
}

.content {
  color: #000;
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .banner-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .home-container,
  .page-container {
    padding: 1rem;
  }

  .profile-section {
    padding: 0;
  }

  .profile-image {
    margin-bottom: 0;
  }

  .profile-image img {
    max-width: 216px;
    transform: scale(0.8);
  }

  .image-banner {
    top: 167px;
  }
}
