* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: #1c1c1e;
    color: #f3f4f6;
    line-height: 1.6;
    padding: 2rem;
  }
  
  :root {
    --accent-pink: #f472b6;
    --accent-pink-hover: #ec4899;
    --gray-light: #d1d5db;
    --gray-mid: #4b5563;
    --gray-dark: #1f2937;
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero {
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-pink);
  }
  
  .hero h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gray-light);
    margin-top: 0.25rem;
  }
  
  .hero p {
    margin-top: 1rem;
    color: #e5e7eb;
  }
  
  .links {
    margin-top: 1.5rem;
  }
  
  .links a {
    margin: 0 0.5rem;
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }
  
  .links a:hover {
    color: var(--accent-pink-hover);
  }
  
  .highlights, .education {
    margin-top: 4rem;
  }
  
  .highlights h3, .education h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #ffffff;
  }

  .highlights p.intro {
    font-size: 1rem;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .highlight, .school {
    background: #2a2a2d;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
    
  .highlight h4, .school h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f9fafb;
  }
  
  .highlight p, .school p {
    color: #d1d5db;
  }
  
  .highlight .tags {                                                                                                                                                                                                                                                                                  
    display: flex;                                                                                                                                                                                                                                                                                  
    flex-wrap: wrap;                                                                                                                                                                                                                                                                                
    gap: 0.4rem;                                                                                                                                                                                                                                                                                    
    margin-top: 0.75rem;                                                                                                                                                                                                                                                                            
  }                                                                                                                                                                                                                                                                                                 
                                                                                                                                                                                                                                                                                                    
  .highlight .tags .tag {
    background: var(--gray-dark);
    color: var(--accent-pink);
    border: 1px solid var(--gray-mid);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.2rem 0.65rem;
  }

.filter-bar {
  text-align: center;
  margin-bottom: 1.5rem;
}

.filter-toggle {
  background: none;
  border: 1px solid var(--gray-mid);
  color: var(--gray-light);
  border-radius: 9999px;
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.filter-toggle:hover,
.filter-toggle.active {
  border-color: var(--accent-pink);
  color: var(--accent-pink);
}

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.filter-panel.open {
  max-height: 500px;
  opacity: 1;
  margin-top: 1rem;
}

.filter-tag {
  background: var(--gray-dark);
  color: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-family: inherit;
  padding: 0.25rem 0.7rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.filter-tag:hover {
  border-color: var(--accent-pink);
  color: var(--accent-pink);
}

.filter-tag.selected {
  background: var(--accent-pink);
  color: #1c1c1e;
  border-color: var(--accent-pink);
  font-weight: 600;
}

.highlight.hidden {
  display: none;
}

.highlight .tags .tag.matched {
  background: var(--accent-pink);
  color: #1c1c1e;
  border-color: var(--accent-pink);
  font-weight: 600;
}