:root {
  --primary-color: #2D3981;
  --secondary-color: #F0D28C;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #ffffff;
  --background-alt: #f4f7f6;
  --accent-color: #00E5FF; /* Subtle accent if needed, but primary focus on brand colors */
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background-light);
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Header Styles */
header {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.logo-container img {
  height: 60px; /* Adjust size based on actual logo */
  object-fit: contain;
  display: block;
}

/* Hamburger Menu (Hidden on Desktop) */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Nav Links Container */
.nav-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--secondary-color);
}

.btn {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-family: 'Inter', sans-serif;
}

.btn:hover {
  background-color: #e3c477; /* Slightly darker shade of secondary */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background-color: var(--primary-color);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 2rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -4px 0 10px rgba(0,0,0,0.1);
  }

  .nav-container.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .header-actions {
    margin-top: 2rem;
  }

  /* Hamburger Animation Classes */
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}

/* --- Hero Section Styles --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fcfbf8; /* Light cream/off-white background */
  color: var(--primary-color);
  padding: 0 0 0 5%;
  overflow: hidden;
}

.hero-left {
  flex: 1;
  max-width: 650px;
  padding: 4rem 2rem 4rem 0;
  text-align: left;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.05;
  color: #111; /* Very dark for extreme contrast like the reference */
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
  font-weight: 800;
}

.hero h1 .highlight {
  color: var(--primary-color);
}

.hero p {
  font-size: 1.25rem;
  color: #444;
  margin-bottom: 2.5rem;
  max-width: 90%;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
}

.btn {
  /* Ensuring buttons match the boxy modern look of the reference */
  border-radius: 0;
  padding: 0.85rem 1.75rem;
}

/* Specific styling for the buttons in the hero to match reference (solid primary/secondary vs outline) */
.hero-buttons .btn {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.hero-buttons .btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid #ccc;
}

.hero-buttons .btn-outline:hover {
  background-color: rgba(0,0,0,0.05);
}

.hero-right {
  flex: 1;
  height: 85vh;
  display: flex;
  justify-content: flex-end;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Matches the geometric cutout from the reference image */
  clip-path: polygon(25% 0%, 100% 0%, 100% 75%, 75% 100%, 0% 100%, 0% 25%);
}

/* Mobile Responsiveness for Hero */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 6rem 5% 4rem;
  }
  
  .hero-left {
    padding: 0;
    margin-bottom: 3rem;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero-right {
    width: 100%;
    height: 400px;
  }
  
  .hero-right img {
    clip-path: polygon(15% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%, 0% 15%);
  }
}

/* --- Global Section Styles --- */
.section-header {
  margin-bottom: 3rem;
}
.section-header.center {
  text-align: center;
}
.section-header h2 {
  font-size: 2.5rem;
  letter-spacing: -1px;
}
.section-header .subtitle {
  font-size: 1.25rem;
  color: var(--secondary-color);
  font-weight: 500;
  margin-top: 0.5rem;
}

/* --- About Section --- */
.about {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 6rem 5%;
}
.about .section-header h2 {
  color: var(--text-light);
}
.about-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}
.about-text p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: #e0e0e0;
  line-height: 1.7;
}

/* --- Focus Areas Section --- */
.focus-areas {
  background-color: var(--background-alt); /* Light gray/white */
  padding: 6rem 5%;
}
.grid-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.card {
  background-color: var(--background-light);
  padding: 2.5rem 2rem;
  border-radius: 0; /* Keeping the sharp boxy modern look from the hero */
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 4px solid transparent;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-bottom: 4px solid var(--secondary-color);
}
.card .icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: inline-block;
  background-color: rgba(45, 57, 129, 0.05);
  padding: 1rem;
  border-radius: 50%;
}
.card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}
.card p {
  color: #555;
  font-size: 1rem;
}

/* --- Programs Section --- */
.programs {
  background: linear-gradient(135deg, #fcfbf8 0%, #f0ece3 100%);
  padding: 6rem 5%;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 4rem;
  max-width: 100%;
  overflow: hidden;
}

.programs-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.programs-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary-color);
  background-color: var(--primary-color);
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.programs-intro h2 {
  font-size: 3rem;
  line-height: 1.1;
  color: var(--primary-color);
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}

.programs-intro p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
  max-width: 420px;
}

.programs-intro-accent {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  margin-top: 2rem;
  border-radius: 2px;
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.program-item {
  position: relative;
  background-color: #ffffff;
  padding: 2rem 1.75rem 2rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border: 1px solid rgba(45, 57, 129, 0.08);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  cursor: default;
}

.program-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--secondary-color);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.program-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(45, 57, 129, 0.12);
  border-color: rgba(45, 57, 129, 0.15);
}

.program-item:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.program-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(45, 57, 129, 0.07);
  line-height: 1;
  flex-shrink: 0;
  min-width: 45px;
  transition: color 0.35s ease;
}

.program-item:hover .program-number {
  color: rgba(240, 210, 140, 0.4);
}

.program-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 57, 129, 0.05);
  border-radius: 50%;
  transition: all 0.35s ease;
}

.program-icon-wrap .material-symbols-outlined {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: color 0.35s ease;
}

.program-item:hover .program-icon-wrap {
  background: var(--primary-color);
}

.program-item:hover .program-icon-wrap .material-symbols-outlined {
  color: var(--secondary-color);
}

.program-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
  line-height: 1.3;
}

.programs-cta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
  margin-top: 1.5rem;
}

.programs-btn {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 0.85rem 2.5rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
}

.programs-btn:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 57, 129, 0.25);
}

/* --- Resources Section --- */
.resources {
  background: linear-gradient(160deg, var(--primary-color) 0%, #1a2456 60%, #131b3e 100%);
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}

.resources::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 210, 140, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.resources-header {
  max-width: 700px;
  margin-bottom: 3.5rem;
}

.resources-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.resources-header h2 {
  font-size: 2.8rem;
  color: var(--text-light);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.resources-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.resource-tile {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.resource-tile:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(240, 210, 140, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.resource-icon {
  font-size: 2.8rem;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 1.25rem;
  transition: transform 0.4s ease;
}

.resource-tile:hover .resource-icon {
  transform: scale(1.1);
}

.resource-tile h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  letter-spacing: 0.3px;
}

.resource-tile-line {
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
  margin: 0 auto;
  opacity: 0.4;
  transition: all 0.4s ease;
}

.resource-tile:hover .resource-tile-line {
  width: 50px;
  opacity: 1;
}

.resources-cta {
  display: flex;
  justify-content: flex-start;
}

.resources-btn {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  padding: 0.85rem 2.5rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
}

.resources-btn:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 210, 140, 0.3);
}

/* --- Partnerships Section --- */
.partnerships {
  background-color: #ffffff;
  padding: 6rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.partnerships-left {
  max-width: 500px;
}

.partnerships-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-light);
  background: linear-gradient(135deg, var(--primary-color), #1a2456);
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
}

.partnerships-left h2 {
  font-size: 2.8rem;
  color: var(--primary-color);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.partnerships-left p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.partnerships-btn {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 0.85rem 2.5rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  margin-top: 1.5rem;
  transition: all 0.35s ease;
}

.partnerships-btn:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 57, 129, 0.25);
}

.partnerships-right {
  display: flex;
  justify-content: center;
}

.partner-track {
  position: relative;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Vertical connector line */
.partner-track::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
  opacity: 0.3;
}

.partner-node {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.partner-dot {
  position: absolute;
  left: -30px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.partner-dot::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--secondary-color);
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 3px rgba(240, 210, 140, 0.2);
  transition: all 0.35s ease;
}

.partner-node:hover .partner-dot::before {
  width: 14px;
  height: 14px;
  box-shadow: 0 0 0 5px rgba(240, 210, 140, 0.3);
  background: var(--primary-color);
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: #fafafa;
  border: 1px solid rgba(45, 57, 129, 0.06);
  border-left: 3px solid transparent;
  width: 100%;
  min-width: 300px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.partner-card .material-symbols-outlined {
  font-size: 1.6rem;
  color: var(--primary-color);
  opacity: 0.5;
  transition: all 0.35s ease;
}

.partner-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
}

.partner-node:hover .partner-card {
  background: #ffffff;
  border-left-color: var(--secondary-color);
  transform: translateX(6px);
  box-shadow: 0 6px 24px rgba(45, 57, 129, 0.08);
}

.partner-node:hover .partner-card .material-symbols-outlined {
  opacity: 1;
  color: var(--secondary-color);
}

/* --- Media Section --- */
.media-section {
  background-color: #070d1e;
  padding: 6rem 5%;
  color: var(--text-light);
}

.media-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.media-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #00E5FF;
  background-color: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.media-header p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.media-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 220px;
}

.media-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.media-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 229, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.08);
}

.media-card:hover::before {
  opacity: 1;
}

.media-card-icon {
  margin-bottom: auto;
  padding-bottom: 3rem;
}

.media-card-icon .material-symbols-outlined {
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

.media-card:hover .media-card-icon .material-symbols-outlined {
  color: #00E5FF;
}

.media-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.media-arrow {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.media-arrow .material-symbols-outlined {
  color: var(--text-light);
  font-size: 1.2rem;
  transition: all 0.4s ease;
}

.media-card:hover .media-arrow {
  background: #00E5FF;
  transform: translate(5px, -5px);
}

.media-card:hover .media-arrow .material-symbols-outlined {
  color: #070d1e;
  transform: rotate(45deg);
}

/* --- Contact CTA Section --- */
.contact-cta {
  background-color: var(--secondary-color);
  padding: 8rem 5%;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.contact-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary-color);
  background-color: var(--primary-color);
  padding: 0.5rem 1.25rem;
  margin-bottom: 2rem;
  border-radius: 4px;
}

.contact-cta h2 {
  font-size: 3.5rem;
  color: var(--primary-color);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.contact-cta p {
  font-size: 1.25rem;
  color: rgba(45, 57, 129, 0.8);
  margin-bottom: 2.5rem;
}

.contact-btn {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  border-radius: 4px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 10px 25px rgba(45, 57, 129, 0.2);
}

.contact-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(45, 57, 129, 0.15);
}

/* Decorative elements */
.contact-decor {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(45, 57, 129, 0.1);
  z-index: 1;
}

.contact-decor-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
  background: rgba(45, 57, 129, 0.03);
}

.contact-decor-2 {
  width: 600px;
  height: 600px;
  bottom: -300px;
  right: -200px;
  border-width: 4px;
}

.contact-decor-3 {
  width: 150px;
  height: 150px;
  top: 40px;
  right: 15%;
  background: rgba(45, 57, 129, 0.05);
  border: none;
}

/* --- Footer Section --- */
.site-footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 5rem 5% 2rem 5%;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  height: 50px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1); /* Ensure logo is white if it's black by default, though original header used it so it might be fine. Assuming it needs to look good on navy. */
}

.info-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 400px;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.contact-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.contact-col .mt-1 {
  margin-top: 1rem;
}

.contact-col a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-col a:hover {
  color: var(--secondary-color);
}

.footer-socials {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-socials li {
  margin-bottom: 0.75rem;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.footer-socials a .material-symbols-outlined {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.footer-socials a:hover {
  color: var(--secondary-color);
}

.footer-socials a:hover .material-symbols-outlined {
  transform: translate(3px, -3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-legal {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--text-light);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .programs-intro {
    position: relative;
    top: auto;
  }

  .programs-intro h2 {
    font-size: 2.2rem;
  }

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

  .resources-header h2 {
    font-size: 2rem;
  }

  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .partnerships-left h2 {
    font-size: 2rem;
  }

  .partner-card {
    min-width: unset;
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cta h2 {
    font-size: 2.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 550px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }

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