:root{
  /* Navy + Blue Professional Theme */
  --bg: #0a1a3f;
  --panel: #1e293b;
  --text: #f5f5f5;
  --muted: #94a3b8;
  --brand: #1e3a8a;
  --brand-2: #1d4ed8;
  --border: #334155;
  --card: #1e293b;
  --link: #1e3a8a;
  --header-bg: #0a1a3f;
  --table-header: #1e293b;
  --badge-bg: #334155;
  --filter-bg: #1e293b;
  --callout-bg: #1e293b;
  --button-hover: #1d4ed8;
  --accent: #1e3a8a;
  --success: #10b981;
  --warning: #f59e0b;
  --gradient-start: #1e3a8a;
  --gradient-end: #1d4ed8;
  --nav-height: 72px;
  --form-bg: #1e293b;
  --form-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --main-content-bg: #0a1a3f;
  --card-hover: #334155;
  --text-secondary: #94a3b8;
  --sidebar-width: 280px;
  --sidebar-bg: #0a1a3f;
  --sidebar-item-hover: #334155;
}



/* Manual dark theme toggle support */
[data-theme="dark"] {
  --bg: #0f172a;
  --panel: #1e293b;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --brand: #60a5fa;
  --brand-2: #3b82f6;
  --border: #334155;
  --card: #1e293b;
  --link: #60a5fa;
  --header-bg: rgba(15,23,42,0.95);
  --table-header: #1e293b;
  --badge-bg: #334155;
  --filter-bg: #1e293b;
  --callout-bg: #1e293b;
  --button-hover: brightness(1.1);
  --accent: #0891b2;
  --success: #059669;
  --warning: #d97706;
  --gradient-start: #60a5fa;
  --gradient-end: #0891b2;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
img{max-width:100%;display:block}
a{color:var(--link);text-decoration:none;transition: color 0.2s ease}
a:hover{color: var(--brand-2);text-decoration:underline;text-underline-offset:3px}
a:focus{outline: 2px solid var(--link);outline-offset: 2px;border-radius: 2px}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  color: var(--text);
}

h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
}

p {
  margin: 0 0 1.5rem 0;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Civora Button Styles */
.civora-button {
  background-color: var(--brand);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: background-color 0.2s ease;
}

.civora-button:hover {
  background-color: var(--brand-2);
  color: #fff;
}

.container{max-width:1200px;margin:0 auto;padding:0 2rem}

@media (max-width: 768px) {
  .container{padding:0 1rem}
}

/* Horizontal Navigation Bar */
.site-header{
  background: var(--header-bg);
  position: sticky; 
  top: 0; 
  z-index: 10;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.header-inner{
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: var(--nav-height);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.brand{
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s ease;
}

.brand:hover{
  color: var(--brand-2);
}

.site-nav{
  margin-left: auto;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-link{
  color: #ffffff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover{
  color: var(--brand);
  text-decoration: none;
}

.nav-link:hover::after,
.nav-link.active::after{
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand);
}

.nav-link.active{
  color: var(--brand);
  font-weight: 700;
}

.nav-toggle{
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  border-radius: .5rem;
  padding: .5rem .75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-toggle:focus{
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.nav-toggle:hover{
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 760px){
  .nav-toggle{
    display: block;
  }
  .site-nav{
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 1rem;
    gap: 0.5rem;
    background: var(--header-bg);
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .site-nav.open{
    display: flex;
  }
}

/* Main Content Layout */
.main-content {
  padding-top: 2rem;
}
.site-nav a{
  padding:.5rem 1rem;
  border-radius:.75rem;
  color:var(--text);
  text-decoration:none;
  font-weight:500;
  transition: all 0.2s ease;
}
.site-nav a.active{background: var(--brand);color: white}
.site-nav a:hover{background: var(--badge-bg);color: var(--brand)}
.site-nav a:focus{outline: 2px solid var(--link);outline-offset: 2px}

.lang-select{
  background: var(--filter-bg);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: .75rem;
  padding: .5rem .75rem;
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
}
.lang-select:focus{border-color: var(--brand)}

.nav-toggle{display:none;margin-left:auto;background:var(--filter-bg);border:1px solid var(--border);color:var(--text);border-radius:.75rem;padding:.5rem .75rem;cursor:pointer;transition: all 0.2s ease}
.nav-toggle:focus{outline: 2px solid var(--link);outline-offset: 2px}
.nav-toggle:hover{background: var(--badge-bg)}

@media (max-width: 760px){
  .nav-toggle{display:block}
  .site-nav{display:none;flex-direction:column;align-items:flex-start;width:100%;margin-top:1rem;gap:0.5rem}
  .site-nav.open{display:flex}
  .lang-select{margin-left:auto}
}

.hero{
  padding: 8rem 2rem 6rem;
  background: radial-gradient(ellipse at top, var(--panel) 0%, var(--bg) 100%);
  position: relative;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(29, 185, 84, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(29, 185, 84, 0.05) 0%, transparent 50%);
  z-index: -1;
}

.tagline{
  font-size:1.25rem;
  color: var(--muted);
  margin:.5rem 0 2rem;
  font-weight: 500;
}
.intro{
  color: var(--muted);
  max-width: 65ch;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-cta{
  margin-top:2rem;
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
}
.button{
  display: inline-flex;
  align-items: center;
  background: var(--brand);
  color: black;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(29, 185, 84, 0.3);
}
.button:hover{
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 30px rgba(29, 185, 84, 0.4);
  color: black;
  background: var(--brand-2);
}
.button:focus{outline: 2px solid var(--brand);outline-offset: 4px}
.button-secondary{
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.button-secondary:hover{
  background: var(--card);
  border-color: var(--brand);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  color: var(--brand);
  transform: translateY(-2px) scale(1.05);
}

.cards{
  padding: 4rem 0 2rem;
  background: var(--main-content-bg);
}

.grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.card{
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 1.5rem;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.card:hover{
  box-shadow: 0 12px 40px rgba(29, 185, 84, 0.2), 0 4px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-8px) scale(1.02);
  border-color: var(--brand);
  background: var(--card-hover);
}

.card:focus{
  outline: 2px solid var(--brand);
  outline-offset: 4px;
  box-shadow: 0 12px 40px rgba(29, 185, 84, 0.3), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.card h3{
  color: var(--text);
  margin: 0 0 1.5rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.card:hover h3 {
  color: var(--brand);
}

.card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.card:hover p {
  color: var(--muted);
}

.page{padding:3rem 0}

/* Interactive World Map Styles */
.world-map-container {
  background: var(--card);
  border: 2px solid var(--border);
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.world-map-container h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: 1.5rem;
}

.world-map-container p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.interactive-world-map {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  background: var(--bg);
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

/* Responsive adjustments for map container */
@media (max-width: 760px) {
  .world-map-container {
    padding: 1.5rem;
  }
}
.page h1{
  margin-top:0;
  color: var(--text);
  margin-bottom: 2rem;
}
.callout{
  background:var(--callout-bg);
  border:1px solid var(--border);
  padding:1.5rem;
  border-radius:1rem;
  margin:2rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.callout h3{margin-top:0;color: var(--text)}
.bullets{
  line-height:1.8;
  margin: 2rem 0;
}
.bullets li {
  margin-bottom: 1rem;
}

.mission {
  padding: 6rem 2rem;
  background: var(--panel);
  border-radius: 2rem;
  margin: 4rem 0;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.05) 0%, transparent 50%);
  z-index: -1;
}

.mission .container {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.mission h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--muted);
}

.embed{margin:2rem 0}
.embed iframe{
  width:100%;
  min-height:500px;
  border:1px solid var(--border);
  border-radius:1rem;
  background:var(--panel)
}
.embed-note{color:var(--muted);font-size:.95rem;margin-top:.75rem}

blockquote{
  background:var(--callout-bg);
  border-left:4px solid var(--brand);
  padding:1.5rem;
  border-radius:.5rem;
  margin:2rem 0;
  font-style:italic;
  color: var(--text);
}

/* Scholarship filter styles */
.filters{display:flex;gap:.5rem;flex-wrap:wrap;margin:1rem 0}
.filters input,.filters select,.filters label{
  background:var(--filter-bg);border:1px solid var(--border);color:var(--text);
  border-radius:.5rem;padding:.4rem .5rem;transition: border-color 0.2s ease;
}
.filters input:focus,.filters select:focus{
  outline: none;border-color: var(--link);box-shadow: 0 0 0 1px var(--link);
}
.filters label{display:flex;align-items:center;gap:.4rem;padding:.35rem .5rem;cursor:pointer}
.filters input[type="checkbox"]{margin:0;width:auto;padding:0}

.table{width:100%;border-collapse:collapse;margin-top:1rem}
.table th,.table td{border:1px solid var(--border);padding:.5rem;vertical-align:top}
.table th{background:var(--table-header);text-align:left;color:var(--text);font-weight:600}
.table tbody tr:hover{background:var(--callout-bg)}
.badge{background:var(--badge-bg);border:1px solid var(--border);border-radius:.4rem;padding:.1rem .4rem;font-size:.85rem;color:var(--text)}
.muted{color:var(--muted)}

.site-footer{
  border-top:1px solid var(--border);
  margin-top:4rem;
  background:var(--panel);
  padding: 2rem 0;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 1rem;
  color:var(--muted)
}
.footer-links{display:flex;gap:1.5rem;flex-wrap:wrap}
.footer-links a{
  color:var(--muted);
  text-decoration:none;
  transition: color 0.2s ease;
  font-weight: 500;
}
.footer-links a:hover{color:var(--brand)}

/* Spotify Study Music Integration */
.study-music {
  background: var(--panel);
  padding: 3rem 0;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}

.study-music h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text);
}

.study-music p {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.spotify-playlists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.playlist-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.playlist-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.playlist-card h3 {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 600;
}

.spotify-player {
  border-radius: 6px;
  overflow: hidden;
}

.spotify-player iframe {
  border-radius: 6px;
}

.music-controls {
  text-align: center;
  background: var(--callout-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem;
  margin-top: 1.5rem;
}

.music-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.music-note strong {
  color: var(--brand);
}

@media (max-width: 768px) {
  .spotify-playlists {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .playlist-card {
    padding: 1rem;
  }
  
  .study-music {
    padding: 2rem 0;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}

/* Sidebar Styles - Modern Dark Theme */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--sidebar-bg);
  border-right: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: transform 0.3s ease;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
}

.sidebar-brand {
  padding: 2rem 1.5rem 1rem;
  color: var(--text);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 800;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s ease;
}

.sidebar-brand:hover {
  color: var(--brand-2);
  text-decoration: none;
}

.sidebar-nav {
  flex: 1;
  padding: 1rem 0;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.5rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  margin: 0.125rem 0.5rem;
  border-radius: 0.5rem;
}

.sidebar-nav a:hover {
  background: var(--sidebar-item-hover);
  color: var(--text);
  text-decoration: none;
  transform: translateX(4px);
}

.sidebar-nav a.active {
  color: var(--brand-2);
  background: var(--sidebar-item-hover);
  font-weight: 600;
}

.sidebar-nav a.active::before {
  content: '';
  position: absolute;
  left: -0.5rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brand-2);
  border-radius: 0 2px 2px 0;
}

.sidebar-nav-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.sidebar-nav a:hover .sidebar-nav-icon {
  transform: scale(1.1);
}

/* Language selector in sidebar */
.sidebar-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
}

.lang-select {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-select:hover {
  border-color: var(--brand);
  background: var(--card-hover);
}

.lang-select:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Main content area */
.main-content {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
  background: var(--main-content-bg);
}

/* Mobile responsive sidebar */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  backdrop-filter: blur(4px);
}

.sidebar-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  left: 1rem;
  background: var(--brand);
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 0.5rem;
  cursor: pointer;
  z-index: 1001;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.sidebar-toggle:hover {
  background: var(--brand-2);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }
  
  .sidebar.open {
    transform: translateX(0);
  }
  
  .sidebar-overlay.active {
    display: block;
  }
  
  .sidebar-toggle {
    display: block;
  }
  
  .main-content {
    margin-left: 0;
  }
}

/* Scholarship Spotlight Section */
.scholarship-spotlight {
  background: var(--panel);
  padding: 4rem 0;
  margin: 4rem 0;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.scholarship-spotlight h2 {
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.scholarship-spotlight .container > p {
  text-align: center;
  color: var(--muted);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.spotlight-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
}

.spotlight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: var(--brand);
}

.spotlight-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 1rem;
}

.spotlight-header h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.3;
  flex: 1;
}

.spotlight-badge {
  background: var(--brand);
  color: var(--bg);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.spotlight-desc {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.spotlight-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.spotlight-deadline {
  color: var(--warning);
  font-weight: 500;
}

.spotlight-level {
  color: var(--brand);
  font-weight: 500;
}

/* Support Civora Section */
.support-civora {
  background: linear-gradient(135deg, var(--panel) 0%, rgba(251, 191, 36, 0.05) 100%);
  padding: 4rem 0;
  margin: 4rem 0;
  border-radius: 1rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.support-civora::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.support-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

/* Impact Metrics */
.impact-metrics {
  background: linear-gradient(135deg, var(--card) 0%, rgba(251, 191, 36, 0.02) 100%);
  padding: 4rem 0;
  margin: 3rem 0;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.impact-metrics h2 {
  text-align: center;
  color: var(--brand);
  margin-bottom: 3rem;
  font-size: 2rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.metric-item {
  padding: 2rem 1rem;
  background: rgba(251, 191, 36, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(251, 191, 36, 0.2);
  transition: transform 0.3s ease;
}

.metric-item:hover {
  transform: translateY(-4px);
}

.metric-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .metric-number {
    font-size: 2.5rem;
  }
}

/* Simplified Footer Styles */
.site-footer {
  background: var(--panel);
  padding: 2rem 0;
  margin-top: 4rem;
  border-top: 1px solid var(--border);
}

.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
}

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

.footer-links a{
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}

/* Download Buttons */
.download-buttons {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.download-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
  font-style: italic;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-section {
  background: var(--card);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.contact-section h2 {
  color: var(--brand);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact-form {
  margin-top: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--filter-bg);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-section:last-child {
    grid-column: 1 / -1;
  }
}

/* Vision Section */
#vision {
  background: linear-gradient(135deg, var(--panel) 0%, rgba(251, 191, 36, 0.05) 100%);
  padding: 3rem;
  margin: 3rem 0;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

#vision h2 {
  color: var(--brand);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

#vision ul {
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
}

#vision li {
  margin: 1rem 0;
  padding-left: 1.5rem;
  position: relative;
}

#vision li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}

.support-text h2 {
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.support-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
}

.support-benefits li {
  padding: 0.5rem 0;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.support-action {
  text-align: center;
  min-width: 200px;
}

.support-button {
  background: var(--brand);
  color: var(--bg);
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.support-button:hover {
  background: var(--brand-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
  color: var(--bg);
}

.support-icon {
  font-size: 1.2rem;
}

.support-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 768px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
  }
  
  .spotlight-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .support-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .support-action {
    min-width: auto;
  }
}

/* IELTS Pronunciation Guide Styles */
.pronunciation-guide h5 {
  color: var(--brand);
  margin: 1.5rem 0 1rem 0;
  font-size: 1.1rem;
  border-bottom: 2px solid var(--brand);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.sound-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.sound-item {
  background: var(--filter-bg);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1rem;
  transition: border-color 0.2s ease;
}

.sound-item:hover {
  border-color: var(--brand);
}

.sound-item strong {
  color: var(--brand);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.sound-examples {
  margin: 0.5rem 0;
}

.sound-examples span {
  display: block;
  font-family: 'Courier New', monospace;
  margin: 0.25rem 0;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.sound-examples .correct {
  background: rgba(16, 185, 129, 0.2);
  color: var(--success);
}

.sound-examples .incorrect {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.sound-item .tip {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 0.5rem;
}

.stress-patterns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 1rem 0;
}

.stress-example {
  background: var(--callout-bg);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1rem;
}

.stress-example strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.75rem;
}

.stress-example ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.stress-example li {
  margin: 0.5rem 0;
  color: var(--muted);
}

.stress-example em {
  color: var(--brand);
  font-weight: 600;
}

.practice-exercises {
  margin: 1rem 0;
}

.exercise {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
}

.exercise strong {
  color: var(--brand);
  display: block;
  margin-bottom: 0.75rem;
}

.exercise ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.exercise li {
  margin: 0.25rem 0;
  color: var(--muted);
  font-family: 'Courier New', monospace;
}

.exercise p {
  margin: 0.5rem 0;
  color: var(--text);
}

.exercise small {
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .sound-grid {
    grid-template-columns: 1fr;
  }
  
  .stress-patterns {
    grid-template-columns: 1fr;
  }
}

/* Collapsible Sections for Citizenship Page */
.collapsible-section {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  margin: 2rem 0;
  overflow: hidden;
  background: var(--panel);
  transition: all 0.3s ease;
}

.collapsible-section:hover {
  border-color: var(--brand);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2);
}

.collapsible-header {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text);
  font-family: inherit;
  position: relative;
}

.collapsible-header:hover {
  background: var(--card);
}

.collapsible-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  flex: 1;
  text-align: left;
}

.collapsible-icon {
  font-size: 1.2rem;
  color: var(--brand);
  transition: transform 0.3s ease;
  min-width: 24px;
  text-align: center;
}

.collapsible-header[aria-expanded="true"] .collapsible-icon {
  transform: rotate(180deg);
}

.collapsible-content {
  display: none;
  padding: 0 2rem 2rem 2rem;
  animation: slideDown 0.3s ease-out;
}

.collapsible-content[style*="block"] {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced visual indicators */
.collapsible-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--brand) 0%, transparent 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.collapsible-header:hover::after {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .collapsible-header {
    padding: 1rem 1.5rem;
  }
  
  .collapsible-header h2 {
    font-size: 1.3rem;
  }
  
  .collapsible-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}