/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #002868;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #c8102e;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

main {
  min-height: 60vh;
}

section {
  padding: 4rem 0;
}

.text-center {
  text-align: center;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  color: #002868;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 2rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.button-primary,
.button-primary-large,
.button-secondary,
.button-secondary-large,
.button-small {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-align: center;
}

.button-primary,
.button-primary-large {
  background: #c8102e;
  color: #fff;
}

.button-primary:hover,
.button-primary-large:hover {
  background: #a00d24;
}

.button-primary-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.button-secondary,
.button-secondary-large {
  background: #002868;
  color: #fff;
}

.button-secondary:hover,
.button-secondary-large:hover {
  background: #001a47;
}

.button-secondary-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.button-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* ============================================
   NAVBAR STYLES
   ============================================ */

.site-header {
  background: #fff;
  border-bottom: 3px solid #c8102e;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  width: 100%;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: #002868;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #c8102e;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.7em;
  margin-left: 0.25rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  min-width: 220px;
  display: none;
  z-index: 1001;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #c8102e;
}

.dropdown-divider {
  height: 1px;
  background: #ddd;
  margin: 0.5rem 0;
}

.nav-cta .button-primary {
  background: #c8102e;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  white-space: nowrap;
}

.nav-cta .button-primary:hover {
  background: #a00d24;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background: #002868;
  margin: 5px 0;
  transition: 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, #002868 0%, #004080 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero .lead {
  color: rgba(255,255,255,0.9);
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
  background: #f5f5f5;
  padding: 1rem 0;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #002868;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #666;
}

/* ============================================
   GRIDS
   ============================================ */

.reasons-grid,
.districts-grid,
.coverage-grid,
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* ============================================
   CARDS
   ============================================ */

.reason-card,
.district-card,
.coverage-card,
.resource-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
}

.reason-card:hover,
.district-card:hover,
.coverage-card:hover,
.resource-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
  border-color: #c8102e;
}

.district-card {
  text-decoration: none;
  color: inherit;
}

.district-card h3,
.reason-card h3,
.coverage-card h3,
.resource-card h3 {
  color: #002868;
  margin-bottom: 0.5rem;
}

.district-card p {
  color: #666;
  margin: 0;
}

/* ============================================
   SECTIONS
   ============================================ */

.why-texas-specific {
  background: #f9f9f9;
}

.featured-districts h2,
.what-we-cover h2,
.free-resources h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.featured-districts > .container > p {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-section {
  background: #f5f5f5;
}

.cta-box {
  background: #fff;
  border: 2px solid #002868;
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
}

.cta-box.primary {
  background: linear-gradient(135deg, #002868 0%, #004080 100%);
  color: #fff;
  border: none;
}

.cta-box.primary h2 {
  color: #fff;
}

.cta-box.primary p {
  color: rgba(255,255,255,0.9);
}

.subscribe-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.subscribe-form input[type="email"] {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.cta-box.primary .subscribe-form input[type="email"] {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.cta-box.primary .subscribe-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.6);
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.site-footer {
  background: #002868;
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-subscribe {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer-subscribe input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.9rem;
}

.footer-subscribe input::placeholder {
  color: rgba(255,255,255,0.6);
}

.footer-subscribe .button-small {
  background: #c8102e;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
  white-space: nowrap;
}

.footer-subscribe .button-small:hover {
  background: #a00d24;
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-legal-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.footer-legal-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.separator {
  color: rgba(255,255,255,0.4);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    border-top: 1px solid #ddd;
    display: none;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-link {
    padding: 0.75rem;
  }
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
  }
  
  .nav-cta {
    margin-top: 0.5rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-legal {
    flex-direction: column;
  }
  
  .separator {
    display: none;
  }
  
  .reasons-grid,
  .districts-grid,
  .coverage-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }
}
```

---

## **FILE STRUCTURE YOU NEED:**
```
texasspecialed/
├── index.html
├── districts/
│   ├── index.html
│   └── (all 20 district folders)
├── styles/
│   └── global.css ← PUT THE CSS HERE
└── images/
    └── texasspecialed-logo.png
