@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Penn Advisory Brand Colors */
  --penn-navy: #1C2F54;
  --penn-gold: hsl(42, 35%, 62%);
  --penn-gold-light: hsl(42, 45%, 67%);
  --penn-charcoal: hsl(210, 25%, 25%);
  --penn-cream: hsl(0, 0%, 98%);
  
  /* Theme Colors */
  --background: hsl(210, 40%, 98%);
  --foreground: hsl(222, 84%, 5%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(222, 84%, 5%);
  --muted: hsl(210, 40%, 96%);
  --muted-foreground: hsl(215, 16%, 47%);
  --border: hsl(214, 32%, 91%);
  
  /* Fonts */
  --font-sans: "Inter", system-ui, sans-serif;
  --font-serif: "Playfair Display", serif;
  
  /* Layout */
  --radius: 0.75rem;
  --max-width: 1280px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

/* Utility Classes */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Image sizing utilities */
.w-48 {
  width: 12rem;
}

.h-64 {
  height: 16rem;
}

.object-cover {
  object-fit: cover;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Positioning utilities */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* Typography utilities */
.font-serif {
  font-family: var(--font-serif);
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.leading-tight {
  line-height: 1.25;
}

/* Global image constraints */
img {
  max-width: 100%;
  height: auto;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Colors */
.text-penn-navy { color: var(--penn-navy); }
.text-penn-gold { color: var(--penn-gold); }
.text-penn-gold-light { color: var(--penn-gold-light); }
.text-penn-charcoal { color: var(--penn-charcoal); }
.text-blue-100 { color: #dbeafe; }
.text-blue-200 { color: #bfdbfe; }
.text-blue-300 { color: #93c5fd; }
.text-white { color: white; }

.bg-white { background-color: white; }
.bg-penn-navy { background-color: var(--penn-navy); }
.bg-penn-gold { background-color: var(--penn-gold); }
.bg-penn-gold-light { background-color: var(--penn-gold-light); }
.bg-muted { background-color: var(--muted); }

/* Layout */
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-y-16 > * + * { margin-top: 4rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3, .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-4 { gap: 1rem; }

/* Mobile-First Responsive Grid System */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Flex utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* Gap utilities */
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Responsive breakpoints: sm (640px), md (768px), lg (1024px), xl (1280px) */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:text-5xl { font-size: 3rem; }
  .sm\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:text-6xl { font-size: 3.75rem; }
}

/* Spacing */
.p-8 { padding: 2rem; }
.p-4 { padding: 1rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

/* Responsive spacing */
@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
}

@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
}

/* Navigation - Support both .navigation/.nav and .nav-content/.nav-container */
.navigation, .nav {
  background: white;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-content, .nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.logo img {
  height: 4.5rem;
  width: auto;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .logo img {
    height: 5.5rem;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

.nav-link {
  font-weight: 500;
  color: var(--penn-charcoal);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--penn-navy);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  padding: 0.5rem 1rem;
}

.btn-primary {
  background-color: var(--penn-gold);
  color: var(--penn-navy);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: var(--penn-gold-light);
}

.btn-secondary {
  border: 2px solid var(--penn-gold);
  color: var(--penn-gold);
  background: transparent;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-secondary:hover {
  background-color: var(--penn-gold);
  color: white;
}

.btn-outline {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--penn-navy);
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-outline:hover {
  background-color: var(--muted);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  display: none;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 300px;
  background: white;
  z-index: 300;
  transition: right 0.3s ease;
  padding: 2rem;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav-links, .mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  color: var(--penn-charcoal);
  text-decoration: none;
  font-size: 1.125rem;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-link:hover {
  color: var(--penn-navy);
}

/* Cards */
.card {
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.15);
}

.card-content {
  padding: 2rem;
}

/* Hero Section - Support both old and new styles */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--penn-navy) 0%, var(--penn-navy) 50%, #1e3a8a 100%);
  color: white;
  padding: 5rem 0 8rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-bg {
  position: relative;
  inset: 0;
  opacity: 0.1;
  background-image: url('https://images.unsplash.com/photo-1556740758-90de374c12ad?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&h=1080');
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero gradient background */
.hero-gradient {
  background: linear-gradient(135deg, var(--penn-navy) 0%, var(--penn-navy) 50%, #1e3a8a 100%);
}

/* Legacy React-style classes for compatibility */
.bg-gradient-to-br.from-penn-navy.via-penn-navy.to-blue-900 {
  background: linear-gradient(135deg, var(--penn-navy) 0%, var(--penn-navy) 50%, #1e3a8a 100%);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 64rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: #dbeafe;
  margin-bottom: 2rem;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero-stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--penn-gold);
}

.hero-stat-label {
  color: #bfdbfe;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-lg {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--penn-navy);
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.25rem;
  color: var(--penn-charcoal);
  max-width: 48rem;
  margin: 0 auto;
}

/* Quote Section */
.quote-section {
  background: var(--penn-navy);
  color: white;
  padding: 4rem 0 5rem;
}

.quote-mark {
  font-size: 3.75rem;
  color: rgba(168, 162, 158, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
}

.quote-text {
  font-size: 1.875rem;
  font-weight: 300;
  font-style: italic;
  color: #dbeafe;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.quote-author {
  color: var(--penn-gold);
  font-weight: 500;
}

/* Icons */
.icon-container {
  width: 4rem;
  height: 4rem;
  background: rgba(168, 162, 158, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.icon {
  width: 2rem;
  height: 2rem;
  color: var(--penn-gold);
}

/* Footer */
.footer {
  background: var(--penn-navy);
  color: white;
  padding: 3rem 0;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 6rem;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.footer-description {
  color: #bfdbfe;
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

.footer-disclaimer {
  font-size: 0.875rem;
  color: #93c5fd;
}

.footer-section h3 {
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: #bfdbfe;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--penn-gold);
}

.footer-contact {
  font-size: 0.875rem;
  color: #bfdbfe;
}

.footer-divider {
  border: none;
  border-top: 1px solid #1e3a8a;
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #93c5fd;
}

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

/* Responsive Design */
@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
  .hero-title { font-size: 3.75rem; }
  .hero-description { font-size: 1.5rem; }
  .hero-buttons { 
    flex-direction: row; 
    gap: 1rem;
  }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .quote-text { font-size: 1.875rem; }
}

@media (min-width: 768px) {
  .grid-md-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-company { grid-column: span 2; }
  .footer-bottom { 
    flex-direction: row; 
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
  .nav-links { display: flex; }
  .mobile-menu-toggle { display: none; }
  .grid-lg-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero { padding: 5rem 0 8rem; }
  .hero-title { font-size: 4.5rem; }
  .section { padding: 6rem 0; }
  .section-title { font-size: 2.5rem; }
}

/* Animations */
.transition-colors {
  transition-property: color, background-color, border-color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

.transition-shadow {
  transition-property: box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

/* Utility overrides for specific cases */
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }

.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.font-light { font-weight: 300; }
.italic { font-style: italic; }

.flex-shrink-0 { flex-shrink: 0; }
.inline-flex { display: inline-flex; }

.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.opacity-5 { opacity: 0.05; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }

.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }

.object-contain { object-fit: contain; }

.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-auto { width: auto; }

.border-2 { border-width: 2px; }

.block { display: block; }

.mt-half { margin-top: 0.125rem; }

.text-sm { font-size: 0.875rem; }

.border-bottom { border-bottom: 1px solid var(--border); }

/* Missing Utility Classes */
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }

.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.font-light { font-weight: 300; }
.italic { font-style: italic; }

.flex-shrink-0 { flex-shrink: 0; }
.inline-flex { display: inline-flex; }

.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.opacity-5 { opacity: 0.05; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }

.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }

.object-contain { object-fit: contain; }

.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-auto { width: auto; }

.border-2 { border-width: 2px; }

.block { display: block; }

.mt-half { margin-top: 0.125rem; }

.text-sm { font-size: 0.875rem; }

.transition-shadow {
  transition-property: box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

/* Grid Responsive Classes */
@media (min-width: 768px) {
  .grid-md-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .grid-lg-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Question Circle for FAQ sections */
.question-circle {
    width: 2rem;
    height: 2rem;
    background-color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Process Grid and Steps */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    text-align: center;
}

.process-number {
    width: 4rem;
    height: 4rem;
    background-color: #1B365D;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    font-weight: bold;
}

.process-title {
    font-weight: 600;
    color: #1B365D;
    margin-bottom: 0.5rem;
}

.process-description {
    color: #6B7280;
    font-size: 0.875rem;
}

/* Statistics Circle for Investment Management */
.stat-circle {
    width: 5rem;
    height: 5rem;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Scenario Icon for Risk Management */
.scenario-icon {
    width: 2rem;
    height: 2rem;
    background-color: #1B365D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* FAQ Accordion Styles */
.faq-accordion {
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: #D4AF37;
}

.faq-trigger {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1B365D;
    transition: background-color 0.2s ease;
}

.faq-trigger:hover {
    background-color: #F9FAFB;
}

.faq-trigger span {
    flex: 1;
    margin-right: 1rem;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #6B7280;
}

.icon-circle-small {
    width: 3rem;
    height: 3rem;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Process Page Styles */
.step-number {
    width: 4rem;
    height: 4rem;
    background-color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1B365D;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.step-subtitle {
    color: #93C5FD;
}

.process-section-title {
    font-weight: 600;
    color: #1B365D;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.process-list-title {
    font-weight: 600;
    color: #1B365D;
    margin-bottom: 0.5rem;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #6B7280;
    font-size: 0.875rem;
}

.process-list li {
    margin-bottom: 0.25rem;
}

.icon-circle-medium {
    width: 3rem;
    height: 3rem;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle-large {
    width: 4rem;
    height: 4rem;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-start {
    display: flex;
    align-items: flex-start;
}

/* Missing primary color utilities */
.bg-primary {
    background-color: var(--penn-navy);
}

.text-primary {
    color: var(--penn-gold);
}

/* Icon sizing utilities */
.icon-lg {
    width: 2rem;
    height: 2rem;
}

/* Layout utilities */
.max-w-4xl {
    max-width: 56rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0;
}

.col-span-12 {
    grid-column: span 12 / span 12;
}

.col-span-3 {
    grid-column: span 3 / span 3;
}

.col-span-9 {
    grid-column: span 9 / span 9;
}

@media (min-width: 1024px) {
    .lg\:col-span-3 {
        grid-column: span 3 / span 3;
    }
    
    .lg\:col-span-9 {
        grid-column: span 9 / span 9;
    }
}

.space-y-12 > * + * {
    margin-top: 3rem;
}

.space-x-6 > * + * {
    margin-left: 1.5rem;
}

.quote {
    font-size: 1.25rem;
    font-style: italic;
    color: #6B7280;
    border-left: 4px solid #D4AF37;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Missing utilities for Our Process page */
.icon-md {
    width: 1.5rem;
    height: 1.5rem;
}

.text-gray-600 {
    color: #6B7280;
}

.text-blue-100 {
    color: #DBEAFE;
}

.text-blue-200 {
    color: #BFDBFE;
}

.flex-start {
    display: flex;
    align-items: flex-start;
}

/* Missing primary color utilities */
.bg-primary {
    background-color: var(--penn-navy);
}

.text-primary {
    color: var(--penn-gold);
}

/* Icon sizing utilities */
.icon-lg {
    width: 2rem;
    height: 2rem;
}

/* Layout utilities */
.max-w-4xl {
    max-width: 56rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Team member layout for contact page */
.team-member-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.team-photo {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.team-info {
    flex: 1;
}

.contact-details > div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.contact-details > div:last-child {
    margin-bottom: 0;
}


/* Contact cards container */
.contact-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Icon sizing */
.icon-sm {
    width: 1.25rem;
    height: 1.25rem;
}

/* Margin utilities needed for contact page */
.mt-6 {
    margin-top: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}


/* Icon container utilities for about page */
.icon-container-md {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-md {
    width: 1.5rem;
    height: 1.5rem;
}

/* Layout utilities */
.items-center {
    align-items: center;
}


/* About page specific styles */
.story-content p {
    margin-bottom: 1.5rem;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* Grid layout fixes for about page removed - using unified grid system below */

/* Team member layout fixes */
.team-member-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

/* Background utilities */
.bg-penn-gold-10 {
    background-color: hsla(42, 35%, 62%, 0.10);
}


/* Missing utilities for about page */

@media (min-width: 1024px) {
    .lg-order-1 {
        order: 1;
    }
    
    .lg-order-2 {
        order: 2;
    }
}

.space-y-16 > * + * {
    margin-top: 4rem;
}

.max-w-md {
    max-width: 28rem;
}

/* Additional icon utilities for services page */
.icon-container-sm {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

/* List item with icon layout */
.list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.list-item-md {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

/* Missing micro-utilities for services page */
.ml-1 {
    margin-left: 0.25rem;
}

.max-w-3xl {
    max-width: 48rem;
}

/* Missing flex utilities */
.inline-flex {
    display: inline-flex;
}

.transition-colors {
    transition: color 150ms ease;
}

/* Service link hover effects */
a.inline-flex:hover i {
    transform: translateX(0.25rem);
    transition: transform 150ms;
}

/* Text color utilities */
.text-primary {
    color: var(--penn-gold);
}

/* Max width utilities for philosophy page */
.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

/* Background gradient for our-process page */
.bg-gradient-navy {
    background: linear-gradient(135deg, var(--penn-navy) 0%, var(--penn-charcoal) 100%);
}

/* Missing utilities for our-process page */
.space-y-12 > * + * {
    margin-top: 3rem;
}

.overflow-hidden {
    overflow: hidden;
}

.w-full {
    width: 100%;
}

.icon-circle-medium {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

/* Hero content stacking */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Icon sizing for our-process page */
.icon-md {
    width: 1.5rem;
    height: 1.5rem;
}

/* Additional grid utilities for service pages */
.grid-md-2-lg-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-md-2-lg-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-md-2-lg-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-md-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-md-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Icon container utilities */
.icon-container-lg {
    width: 4rem;
    height: 4rem;
    background-color: rgba(168, 162, 158, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.icon-container-xl {
    width: 5rem;
    height: 5rem;
    background-color: rgba(168, 162, 158, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

/* Step number utility */
.step-number {
    width: 2rem;
    height: 2rem;
    background-color: var(--penn-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-number span {
    color: white;
    font-size: 0.875rem;
    font-weight: bold;
}

/* Flex utilities for service pages */
.flex-item-start {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

/* Missing utilities for service pages - using unified grid system below */

.gap-12 {
    gap: 3rem;
}

.opacity-10 {
    opacity: 0.1;
}

/* Items center for grids */
.items-center {
    align-items: center;
}

/* Additional missing utility classes for index.html */
.h-12 {
    height: 3rem;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Additional sizing utilities */
.h-8 {
    height: 2rem;
}

.w-8 {
    width: 2rem;
}

.opacity-5 {
    opacity: 0.05;
}

/* Color with opacity utility */
.text-penn-gold\/20 {
    color: rgba(168, 162, 158, 0.2);
}

/* Responsive utilities */
@media (min-width: 640px) {
    .sm\:text-3xl {
        font-size: 1.875rem;
    }
    
    .sm\:text-4xl {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .lg\:h-16 {
        height: 4rem;
    }
}

/* Critical Missing Layout Utilities */

/* Section spacing */
.section-lg {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 1024px) {
    .section-lg {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* Max-width utilities */
.max-w-2xl {
    max-width: 42rem; /* 672px */
    margin-left: auto;
    margin-right: auto;
}

.max-w-3xl {
    max-width: 48rem; /* 768px */
    margin-left: auto;
    margin-right: auto;
}

.max-w-4xl {
    max-width: 56rem; /* 896px */
    margin-left: auto;
    margin-right: auto;
}

.max-w-5xl {
    max-width: 64rem; /* 1024px */
    margin-left: auto;
    margin-right: auto;
}

/* Grid aliases to match HTML replacements */
.grid-md-2,
.grid-lg-2,
.grid-lg-3,
.grid-md-2-lg-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .grid-md-2,
    .grid-md-2-lg-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .grid-lg-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
    }
    
    .grid-lg-3,
    .grid-md-2-lg-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .lg-order-1 {
        order: 1;
    }
    
    .lg-order-2 {
        order: 2;
    }
}
