/* Basic reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Typography and body */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #1f2933;
  background-color: #f5f7fa;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout helpers */
.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background-color: #ffffff;
}

/* Header and navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #111827;
  color: #f9fafb;
  border-bottom: 1px solid #111827;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.site-title {
  font-size: 1.4rem;
  font-weight: 700;
}

.site-subtitle {
  font-size: 0.85rem;
  color: #9ca3af;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.site-nav a {
  color: #e5e7eb;
  font-size: 0.95rem;
  padding-bottom: 0.1rem;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  border-bottom-color: #3b82f6;
}

/* Hero section */
.hero {
  background: radial-gradient(circle at top left, #1d4ed8, #111827);
  color: #f9fafb;
  padding: 4rem 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-text p {
  max-width: 48rem;
  font-size: 1.05rem;
  color: #e5e7eb;
}

.btn-primary {
  display: inline-block;
  margin-top: 1rem;
  background-color: #3b82f6;
  color: #f9fafb;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: #2563eb;
  text-decoration: none;
}

/* Section headings */
.section h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

/* Two-column layout */
.flex-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.flex-2col h3 {
  margin-bottom: 0.75rem;
}

/* Lists and text */
.section ul {
  list-style: disc inside;
  margin-left: 0.5rem;
}

.section li + li {
  margin-top: 0.4rem;
}

.note {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 0.75rem;
}

/* Grants */
.grant-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.grant {
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid #3b82f6;
}

.grant h3 {
  margin-bottom: 0.4rem;
}

.grant-role {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 0.6rem;
}

.grant-details {
  font-size: 0.95rem;
}

.grant-details + .grant-details {
  margin-top: 0.25rem;
}

/* Contact */
.contact-list {
  list-style: none;
  margin-top: 0.75rem;
}

.contact-list li + li {
  margin-top: 0.4rem;
}

/* Footer */
.site-footer {
  background-color: #111827;
  color: #9ca3af;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .site-nav ul {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }

  .flex-2col {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero-text h2 {
    font-size: 1.6rem;
  }
}
/* Hello, this is what I added */
<style>
    .profile-container, .group-container {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 40px;
    }

    .profile-photo, .member-photo {
        width: 160px;
        height: 160px;
        object-fit: cover;
        border-radius: 8px;
        border: 2px solid #ccc;
    }

    .member-card {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .member-info h4 {
        margin: 0;
        font-size: 1.1em;
    }

    .member-info p {
        margin: 0;
        color: #555;
    }
</style>
