:root {
  --text: #1a1a1a;
  --muted: #6b7280;
  --bg: #ffffff;
  --brand: #8b5cf6; /* purple */
  --border: #e5e7eb;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  line-height: 1.35;
}

.container {
  max-width: var(--container);
  padding: 0 24px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.logo {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.main-nav a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  position: relative;
  -webkit-tap-highlight-color: rgba(139, 92, 246, 0.2);
  transition: color 0.3s ease;
}
.main-nav a:hover {
  color: var(--brand);
}
.main-nav a:active {
  color: var(--brand);
  opacity: 0.8;
}
.main-nav a.active {
  color: var(--brand);
  font-weight: 600;
}
.main-nav .search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.main-nav .search svg {
  display: block;
}
.search-label {
  font-weight: 600;
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: nowrap;
    min-height: 70px;
    padding: 12px 0;
  }
  .main-nav {
    width: auto;
    order: 2;
    margin-top: 0;
    flex: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav ul {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    width: auto;
    padding-right: 16px;
  }
  .main-nav li {
    flex-shrink: 0;
  }
  .main-nav a {
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 6px;
    transition: background-color 0.2s, color 0.2s;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    -webkit-tap-highlight-color: rgba(139, 92, 246, 0.3);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
  }
  .main-nav a:hover,
  .main-nav a:active {
    background-color: rgba(139, 92, 246, 0.15);
    color: var(--brand);
  }
  .main-nav a.active {
    color: var(--brand);
    font-weight: 600;
    background-color: rgba(139, 92, 246, 0.1);
  }
  .main-nav a:active {
    transform: scale(0.98);
  }
  .logo-img {
    height: 36px;
    flex-shrink: 0;
  }
}

/* Hero */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
}
.hero .container {
  position: relative;
}
.hero h1 {
  margin: 0 0 50px 0;
  font-size: 80px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--brand);
  line-height: 1.1;
  max-width: 70%;
}
.hero-quote {
  margin: 0 0 50px 0;
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--text);
  font-weight: 400;
  text-align: right;
  margin-left: auto;
  max-width: 60%;
  font-style: normal;
  padding-right: 0;
}
.divider {
  height: 1px;
  background: var(--border);
  width: 100%;
  margin: 40px 0;
}
.hero-subtitle {
  margin: 0 0 60px 0;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: var(--text);
}
.hero-bottom-text {
  font-size: 19px;
  line-height: 2.2;
  color: var(--text);
  font-weight: 400;
  max-width: 480px;
  letter-spacing: 0.2px;
}
.hero-bottom-text br {
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .hero {
    padding: 50px 0 60px;
  }
  .hero h1 {
    font-size: 42px;
    max-width: 100%;
    margin-bottom: 24px;
    line-height: 1.15;
  }
  .hero-quote {
    text-align: left;
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.5;
  }
  .divider {
    margin: 24px 0;
  }
  .hero-subtitle {
    margin-bottom: 32px;
    font-size: 24px;
    line-height: 1.3;
  }
  .hero-bottom-text {
    font-size: 16px;
    max-width: 100%;
    line-height: 2;
  }
  .hero-bottom-text br {
    margin-bottom: 4px;
  }
}

/* About section */
.about-section {
  padding: 80px 0;
  background: #ffffff;
}
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-title {
  margin: 0 0 40px 0;
  font-size: 39px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--brand);
  line-height: 1.2;
}
.about-hero-text {
  text-align: left;
  max-width: 100%;
}
.about-hero-text p {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
  color: var(--text);
  font-weight: 400;
  margin: 0 0 28px 0;
}
.about-hero-text p:last-child {
  margin-bottom: 0;
}

/* About sub-navigation */
.about-sub-nav {
  padding: 40px 0;
}
.about-sub-nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.about-sub-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: color 0.2s;
}
.about-sub-nav a:hover {
  color: var(--brand);
}

/* About bottom section */
.about-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 0;
}
.about-bottom-heading {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
.about-image-placeholder {
  width: 100%;
}
.image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 18px;
  border: 1px solid var(--border);
}

/* Responsive for about section */
@media (max-width: 960px) {
  .about-hero,
  .about-bottom {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-hero-text {
    text-align: left;
  }
  .about-sub-nav ul {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  .about-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .about-hero-text p {
    font-size: 15px;
    margin-bottom: 18px;
    line-height: 1.7;
  }
}

/* Fund Overview section */
.fund-overview-section {
  padding: 80px 0;
  background: #fafafa;
}
.fund-overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.fund-overview-left {
  color: var(--text);
}
.fund-overview-title {
  margin: 0 0 32px 0;
  font-size: 39px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--brand);
  letter-spacing: -1px;
}
.fund-overview-subtitle {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
}
.fund-overview-right {
  width: 100%;
}
.fund-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fund-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 36px;
  position: relative;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.fund-box:hover {
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-3px);
}
.fund-box-text {
  margin: 0;
  color: var(--text);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.7;
  font-weight: 400;
}

/* Responsive for fund overview */
@media (max-width: 960px) {
  .fund-overview-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fund-boxes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .fund-overview-section {
    padding: 50px 0;
  }
  .fund-overview-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .fund-overview-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }
  .fund-box {
    padding: 24px;
    min-height: auto;
  }
  .fund-box-text {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Core Tenets section */
.core-tenets-section {
  padding: 80px 0;
  background: #9b51e0;
  color: #ffffff;
}
.core-tenets-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.core-tenets-left {
  color: #ffffff;
}
.core-tenets-title {
  margin: 0 0 40px 0;
  font-size: 39px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -1px;
}
.core-tenets-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.core-tenets-list li {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.5;
}
.core-tenets-list li:last-child {
  margin-bottom: 0;
}
.core-tenets-right {
  width: 100%;
}
.tenet-boxes {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tenet-box {
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.tenet-box-title {
  margin: 0 0 16px 0;
  font-size: 25px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}
.tenet-box-text {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

/* Responsive for core tenets */
@media (max-width: 960px) {
  .core-tenets-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .core-tenets-section {
    padding: 50px 0;
  }
  .core-tenets-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .core-tenets-list li {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .tenet-box {
    padding: 20px;
  }
  .tenet-box-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .tenet-box-text {
    font-size: 15px;
  }
}

/* Where We Invest section */
.where-we-invest-section {
  padding: 80px 0;
  background: #1a042f;
  color: #ffffff;
}
.where-we-invest-title {
  margin: 0 0 60px 0;
  font-size: 39px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -1px;
}
.invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  /* border-top: 5px solid #00afe9;
  border-bottom: 5px solid #00afe9; */
  padding: 0;
}
.invest-item {
  padding: 50px 32px;
  border-top: 1px solid #9b51e0;
  border-bottom: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
}
.invest-number {
  font-size: 25px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
}
.invest-description {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

/* Responsive for where we invest */
@media (max-width: 960px) {
  .invest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .invest-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .where-we-invest-section {
    padding: 50px 0;
  }
  .where-we-invest-title {
    font-size: 28px;
    margin-bottom: 32px;
  }
  .invest-item {
    padding: 28px 20px;
  }
  .invest-number {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .invest-description {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Global Bridge section */
.global-bridge-section {
  padding: 80px 0;
  background: #fafafa;
}
.global-bridge-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.global-bridge-left {
  color: var(--text);
}
.global-bridge-title {
  margin: 0 0 40px 0;
  font-size: 39px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--brand);
  letter-spacing: -1px;
}
.global-bridge-right {
  width: 100%;
}
.global-bridge-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.global-bridge-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.global-bridge-list li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 20px;
  padding-left: 28px;
  position: relative;
}
.global-bridge-list li:last-child {
  margin-bottom: 0;
}
.global-bridge-list li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--brand);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

/* Responsive for global bridge */
@media (max-width: 960px) {
  .global-bridge-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .global-bridge-section {
    padding: 50px 0;
  }
  .global-bridge-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .global-bridge-box {
    padding: 28px;
  }
  .global-bridge-list li {
    font-size: 15px;
    margin-bottom: 16px;
    padding-left: 20px;
  }
}

/* Leadership section */
.leadership-section {
  padding: 80px 0;
  background: #8b5cf6;
}
.leadership-title {
  margin: 0 0 60px 0;
  font-size: 45px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -1px;
}
.leadership-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.leadership-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.profile-card {
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile-image {
  margin-bottom: 24px;
}
.profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border: 3px solid rgba(255, 255, 255, 0.3);
}
.profile-name {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}
.profile-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.profile-description-card {
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 32px;
}
.profile-description-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 400;
}
.leadership-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.leadership-box {
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 32px;
}
.leadership-box-title {
  margin: 0 0 20px 0;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}
.leadership-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.leadership-list li {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 16px;
  padding-left: 24px;
  position: relative;
}
.leadership-list li:last-child {
  margin-bottom: 0;
}
.leadership-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
}

/* Responsive for leadership */
@media (max-width: 960px) {
  .leadership-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .leadership-section {
    padding: 50px 0;
  }
  .leadership-title {
    font-size: 32px;
    margin-bottom: 32px;
  }
  .profile-card {
    padding: 28px;
  }
  .profile-photo {
    width: 100px;
    height: 100px;
  }
  .profile-name {
    font-size: 20px;
  }
  .profile-title {
    font-size: 13px;
  }
  .profile-description-card {
    padding: 24px;
  }
  .profile-description-card p {
    font-size: 15px;
  }
  .leadership-box {
    padding: 24px;
  }
  .leadership-box-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .leadership-list li {
    font-size: 15px;
    margin-bottom: 12px;
    padding-left: 20px;
  }
}

/* Leadership Team section */
.leadership-team-section {
  padding: 80px 0;
  background: #ffffff;
}
.leadership-team-header {
  margin-bottom: 60px;
}
.leadership-team-title {
  margin: 0;
  font-size: 39px;
  font-weight: 800;
  line-height: 1.1;
  color: #8b5cf6;
  letter-spacing: -1px;
}
.team-cards-wrapper {
  position: relative;
}
.team-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.team-card {
  border-radius: 12px;
  padding: 40px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}
.team-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.team-image {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.team-icon-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.team-icon {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}
.team-role {
  margin: 0 0 16px 0;
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}
.team-description {
  margin: auto 0 0 0;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: #ffffff;
  font-weight: 400;
}
.team-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.team-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.team-nav-btn:hover {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
}
.team-nav-btn svg {
  display: block;
}

/* Responsive for leadership team */
@media (max-width: 960px) {
  .team-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .header-inner {
    min-height: 60px;
    padding: 10px 0;
  }
  .main-nav {
    overflow-x: auto;
  }
  .main-nav ul {
    gap: 6px;
    padding-right: 12px;
  }
  .main-nav a {
    font-size: 13px;
    padding: 10px 14px;
    min-height: 44px;
  }
  .logo-img {
    height: 32px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero-quote {
    font-size: 16px;
  }
  .hero-subtitle {
    font-size: 22px;
  }
  .about-title,
  .fund-overview-title,
  .core-tenets-title,
  .where-we-invest-title,
  .global-bridge-title,
  .leadership-team-title,
  .governance-title {
    font-size: 24px;
  }
  .leadership-title {
    font-size: 28px;
  }
  .access-contact-title {
    font-size: 28px;
  }
  .container {
    padding: 0 16px;
  }
  .team-cards-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .leadership-team-section {
    padding: 50px 0;
  }
  .leadership-team-title {
    font-size: 28px;
    margin-bottom: 32px;
  }
  .team-card {
    padding: 28px;
    min-height: auto;
  }
  .team-icon-wrapper {
    width: 80px;
    height: 80px;
  }
  .team-icon {
    width: 50px;
    height: 50px;
  }
  .team-role {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .team-description {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Governance section */
.governance-section {
  padding: 80px 0;
  background: #fafafa;
}
.governance-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.governance-left {
  color: var(--text);
}
.governance-title {
  margin: 0;
  font-size: 39px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--brand);
  letter-spacing: -1px;
}
.governance-right {
  width: 100%;
}
.governance-panel {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 60px 50px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.governance-box {
  margin-bottom: 40px;
}
.governance-box:last-child {
  margin-bottom: 0;
}
.governance-box-title {
  margin: 0 0 16px 0;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.governance-box-text {
  margin: 0;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: var(--text);
  font-weight: 400;
}

/* Responsive for governance */
@media (max-width: 960px) {
  .governance-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .governance-panel {
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  .governance-section {
    padding: 50px 0;
  }
  .governance-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .governance-panel {
    padding: 28px;
  }
  .governance-box {
    margin-bottom: 28px;
  }
  .governance-box-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .governance-box-text {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Access & Contact section */
.access-contact-section {
  padding: 80px 0;
  background: #1a042f;
  color: #ffffff;
}
.access-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.access-contact-left {
  color: #ffffff;
}
.access-contact-title {
  margin: 0 0 40px 0;
  font-size: 45px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -1px;
  font-family: "Inter", sans-serif;
}
.access-contact-right {
  color: #ffffff;
}
.access-contact-slogan {
  margin: 0 0 24px 0;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  color: #ae86d4;
  letter-spacing: 2px;
  font-family: "Inter", sans-serif;
}
.access-contact-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.access-contact-text p {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  color: rgba(196, 181, 253, 0.9);
  line-height: 1.6;
  font-family: "Inter", sans-serif;
}

/* Responsive for access contact */
@media (max-width: 960px) {
  .access-contact-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .access-contact-section {
    padding: 50px 0;
  }
  .access-contact-title {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .access-contact-slogan {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .access-contact-text p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Contact Footer section */
.contact-footer-section {
  padding: 80px 0;
  background: var(--brand);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}
.contact-footer-section .container {
  position: relative;
  z-index: 1;
}
.contact-footer-wrapper {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact-footer-message {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  font-family: "Georgia", "Times New Roman", serif;
  text-align: center;
}
.contact-footer-email {
  position: absolute;
  bottom: 60px;
  right: 24px;
  margin: 0;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
  color: #ffffff;
  font-weight: 400;
  text-align: right;
  font-family: "Inter", sans-serif;
}
.contact-footer-email a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}
.contact-footer-email a:hover {
  text-decoration: underline;
}
.contact-footer-copyright {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  text-align: center;
  font-family: "Inter", sans-serif;
}

/* Responsive for contact footer */
@media (max-width: 960px) {
  .contact-footer-email {
    position: static;
    text-align: center;
    margin-top: 40px;
  }
  .contact-footer-copyright {
    position: static;
    transform: none;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .contact-footer-section {
    padding: 50px 0;
  }
  .contact-footer-wrapper {
    min-height: auto;
    padding: 20px 0;
  }
  .contact-footer-message {
    font-size: 24px;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 32px;
  }
  .contact-footer-email {
    font-size: 15px;
    text-align: center;
    position: static;
    margin-top: 0;
  }
  .contact-footer-copyright {
    font-size: 13px;
    text-align: center;
    position: static;
    transform: none;
    margin-top: 24px;
  }
}

/* Additional mobile spacing adjustments */
@media (max-width: 768px) {
  .about-hero {
    gap: 32px;
  }
  .fund-overview-content {
    gap: 32px;
  }
  .core-tenets-content {
    gap: 32px;
  }
  .global-bridge-content {
    gap: 32px;
  }
  .leadership-content {
    gap: 24px;
  }
  .governance-content {
    gap: 32px;
  }
  .access-contact-content {
    gap: 32px;
  }
  .fund-boxes {
    gap: 16px;
  }
  .team-cards-container {
    gap: 16px;
  }
  .tenet-boxes {
    gap: 16px;
  }
}
