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

header, nav, ul, li, h1, h2, p {
  margin: 0;
  padding: 0;
}

h1, h2 {
  font-size: inherit;
  font-weight: inherit;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #F3F4F6;
  color: #0A0A0A;
  min-height: 100vh;
}

/*------------------------------------Top Navigation Bar---------------*/
.TopNavBar{
display: flex;
width: 100%;
height: 65px;
padding: 0 40px;
flex-direction: column;
align-items: center;
border-bottom: 1px solid #E5E7EB;
background: #FFF;
box-sizing: border-box;     /* padding stays inside the 100% width */
overflow: hidden;  
}

.Navigation{
display: flex;
height: 64px;
padding-right: 0;
justify-content: space-between;
align-items: center;
flex-shrink: 0;
align-self: stretch;
}

.TitleCard{
display: flex;
width: 177.167px;
height: 44px;
align-items: center;
gap: 12px;
}

.Logo{
display: flex;
flex-direction: row;
align-items: center;
gap: 10px;
width: auto;
height: auto; /* let it grow to fit the text */
}

.LogoText{
display: flex;
flex-direction: column;
justify-content: center;
}

.Title{
color: #101828;
font-family: "Segoe UI Emoji";
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 140% */
margin: 0; 
white-space: nowrap;
}

.Subtitle{
color: #4A5565;
font-family: "Segoe UI Emoji";
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 16px; /* 133.333% */
margin: 0;
}
.NavBtn{
display: flex;
justify-content: space-between; /* pushes logo left, links right */
align-items: center;
height: 65px;
box-sizing: border-box;
width: auto; 
padding: 0;         /* remove extra padding */
background: none;
}
.TopNav{
display: flex;
list-style: none; /* removes bullet points */
gap: 24px;
margin: 0;
padding: 0;
color: #364153;
font-family: "Segoe UI Emoji";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px; /* 142.857% */
}
.TopNav a{
text-decoration: none;
color: #364153;

}
.TopNav a:hover {
    color: #F54900;         /* orange on hover */
}

.TopNav .active a {
    color: #F54900;         /* orange for current page */
}

.TopNav a.active {
    color: #F54900;
    cursor: pointer;
}

.TopNav a.active:visited {
    color: #F54900;
}

.PageContent{
display: flex;
flex-direction: row;
align-items: flex-start;
min-height: calc(100vh - 65px);
    
}

.logBtn {
  background: transparent;
  border: none;         
  padding: 0;           
  cursor: pointer;      
  outline: none;       
   display: inline-flex;
    vertical-align: middle;
    line-height: 0;
}

/* ════════════════════════════
   MAIN
════════════════════════════ */
.main {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* ── Hero ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.hero-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FF6900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.hero-logo svg {
  width: 36px;
  height: 36px;
}

.hero-title {
  font-size: 28px;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1.2;
}

.hero-sub {
  font-size: 15px;
  color: #4A5565;
  line-height: 1.6;
}

/* ── Two column info cards ── */
.two-col-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.info-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon.orange {
  background: #FFF0E6;
}

.card-icon.blue {
  background: #EBF3FB;
}

.card-label {
  font-size: 14px;
  font-weight: 600;
  color: #0A0A0A;
}

.card-text {
  font-size: 13px;
  color: #4A5565;
  line-height: 1.65;
}

/* ── Why section ── */
.why-section {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 28px 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-title {
  font-size: 18px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 2px;
}

.why-text {
  font-size: 13px;
  color: #4A5565;
  line-height: 1.7;
}

/* ── Meet the Team ── */
.team-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.team-title {
  font-size: 22px;
  font-weight: 700;
  color: #0A0A0A;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.team-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.team-img-placeholder {
  background: #F3F4F6;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.team-info {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.team-name {
  font-size: 14px;
  font-weight: 700;
  color: #0A0A0A;
}

.team-role {
  font-size: 13px;
  color: #9CA3AF;
}

a.team-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.team-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  transform: translateY(-2px);
  transition: all 0.15s;
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 680px) {
  .two-col-cards {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .NavBtn {
    display: none;
  }
}