/* About Page - CivicWire Color Scheme */
:root {
  /* CivicWire Brand Colors */
  --civic-gold: #ffd700;
  --civic-dark: #1a1a1a;
  --civic-medium: #2d2d2d;
  --civic-light: #f8f9fa;
  --civic-gray: #666;
  --civic-light-gray: #e0e0e0;
  --civic-white: #ffffff;
  --civic-black: #000000;
  
  /* Design System Variables */
  --background: var(--civic-white);
  --foreground: var(--civic-dark);
  --primary: var(--civic-gold);
  --primary-foreground: var(--civic-dark);
  --secondary: var(--civic-light);
  --secondary-foreground: var(--civic-dark);
  --muted: var(--civic-light-gray);
  --muted-foreground: var(--civic-gray);
  --accent: var(--civic-gold);
  --accent-foreground: var(--civic-dark);
  --border: var(--civic-light-gray);
  --card: var(--civic-white);
  --card-foreground: var(--civic-dark);
  --radius: 0.5rem;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  min-height: 100vh;
}

/* Hero Section */
.hero-section {
   background: 
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url(strategicConnectivityImage.webp);
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  color: var(--civic-white);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  
  
}

.hero-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  
}

@media only screen and (max-width: 1000px) {
 .hero-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 55vh;
}
}

.hero-title {
    margin-top: 60px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--civic-white);
  line-height: 1.1;
  font-family: 'Lora', serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.hero-description {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: #ffffff;
  max-width: 60rem;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  font-family: 'Lora', serif;
  background-color: rgba(0,0,0,0.75);
  border-radius: 10px;
}

/* Section Styles */
.section-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--civic-gold);
  font-family: 'Lora', serif;
}

.section-description {
  font-size: 1.25rem;
  color: var(--civic-gray);
  max-width: 48rem;
  margin: 0 auto;
}

.section-intro {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* Mission Section */
.mission-section {
  padding: 5rem 1.5rem;
  background: var(--civic-white);
  text-align: center;
}

.mission-content {
  max-width: 64rem;
  margin: 0 auto;
}

.mission-statement {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 2rem;
  font-family: 'Lora', serif;
}

.mission-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Why Exists Section */
.why-exists-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--civic-light) 0%, #e9ecef 100%);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.problem-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.2s ease;
}

.problem-card:hover {
  border-color: var(--primary);
}

.problem-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.problem-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.solution-content {
  text-align: center;
  margin-bottom: 3rem;
}

.solution-statement {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.solution-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 56rem;
  margin: 0 auto;
  line-height: 1.7;
}

.founder-quote {
  background: rgba(255, 215, 0, 0.1);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 48rem;
  margin: 0 auto;
}

.quote-text {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

/* Story Section */
.story-section {
  padding: 5rem 1.5rem;
  background: var(--civic-white);
  opacity:1;
}

.story-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.story-intro {
  font-size: 1.25rem;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 3rem;
  font-style: italic;
}

.story-section-block {
  margin-bottom: 4rem;
}

.block-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.block-text {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.highlight-text {
  font-size: 1.25rem;
  color: var(--foreground);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  padding: 1rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
  text-align: center;
  border-left: 4px solid var(--primary);
}

.highlight-text.bold {
  font-weight: 700;
  font-size: 1.375rem;
}

/* Timeline Section */
.timeline-section {
  margin-bottom: 4rem;
}

.timeline-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 2rem;
  text-align: center;
}

.timeline {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 5rem;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 4rem;
  height: 4rem;
  background: var(--background);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 1;
}

.timeline-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.timeline-header {
  margin-bottom: 1rem;
}

.timeline-location {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
}

.timeline-date {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-style: italic;
}

.timeline-text {
  font-size: 1rem;
  color: var(--foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.timeline-quote {
  font-style: italic;
  color: var(--foreground);
  background: var(--muted);
  padding: 1rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  margin: 1rem 0;
}

.timeline-highlight {
  font-size: 1.125rem;
  color: var(--foreground);
  background: var(--accent);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin: 1rem 0;
  text-align: center;
}

.timeline-highlight.bold {
  font-weight: 700;
  font-size: 1.25rem;
}

.timeline-list {
  margin: 1.5rem 0;
}

.list-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.timeline-list ul {
  list-style: none;
  padding-left: 0;
}

.timeline-list li {
  color: var(--foreground);
  padding: 0.25rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.timeline-list li::before {
  content: '•';
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Model Section */
.model-section {
  margin-bottom: 4rem;
}

.section-subtitle {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.model-intro {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.7;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.insight-category {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.category-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.category-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.category-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-mark {
  color: #22c55e;
  font-weight: bold;
  flex-shrink: 0;
}

.bullet {
  color: var(--primary);
  font-weight: bold;
  flex-shrink: 0;
}

.category-item span:last-child {
  color: var(--muted-foreground);
  line-height: 1.5;
}

.category-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-style: italic;
}

/* Partnership Highlights */
.partnership-highlight {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 3rem;
}

.partnership-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.partnership-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
  text-align: center;
}

.partnership-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.partnership-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.point-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.point-content strong {
  display: block;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.point-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* Current State */
.current-state {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 3rem;
}

.current-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.current-intro {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  text-align: center;
  font-style: italic;
}

.current-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.7;
}

.current-support {
  margin-bottom: 2rem;
}

.support-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  text-align: center;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 215, 0, 0.05);
  border-radius: var(--radius);
}

.support-item .check-mark {
  color: #22c55e;
}

.support-item span:last-child {
  color: var(--muted-foreground);
}

.final-statement {
  text-align: center;
}

.statement-highlight {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.statement-highlight.bold {
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--primary);
}

/* Build Together */
.build-together {
  background: linear-gradient(135deg, var(--civic-dark) 0%, var(--civic-medium) 100%);
  color: var(--civic-white);
  border-radius: var(--radius);
  padding: 3rem 2rem;
}

.build-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-align: center;
}

.build-intro {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  text-align: center;
}

.partner-types {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.partner-type {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.partner-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.partner-type span:last-child {
  color: rgba(255, 255, 255, 0.9);
}

.build-cta {
  text-align: center;
}

.build-statement {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.build-final {
  margin-bottom: 1rem;
}

.build-tagline {
  font-size: 1.125rem;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.build-cta-button {
  background: var(--civic-gold);
  color: var(--civic-dark);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.build-cta-button:hover {
  background: #ffed4a;
  transform: translateY(-2px);
}

/* Company Timeline Section */
.timeline-section-main {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--civic-light) 0%, #e9ecef 100%);
}

.company-timeline {
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
}

.company-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
  transform: translateX(-50%);
}

.company-timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.company-timeline-item:nth-child(odd) {
  flex-direction: row;
}

.company-timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  width: 6rem;
  height: 6rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.timeline-content-main {
  flex: 1;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 0 2rem;
  max-width: 20rem;
}

.timeline-description {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* Values Section */
.values-section {
  padding: 5rem 1.5rem;
  background: var(--civic-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.value-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.value-description {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--civic-light) 0%, #e9ecef 100%);
}

.team-intro {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.team-photo {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--civic-light), #e9ecef);
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.team-card:hover .team-img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
  font-family: 'Lora', serif;
}

.team-title-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-bio {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  flex: 1;
}

/* Team Section Responsive Design */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .team-card {
    margin: 0 auto;
    max-width: 400px;
  }
  
  .team-photo {
    height: 240px;
  }
  
  .team-info {
    padding: 1.25rem;
  }
  
  .team-name {
    font-size: 1.125rem;
  }
  
  .team-title-text {
    font-size: 0.9rem;
  }
  
  .team-bio {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .team-section {
    padding: 3rem 1rem;
  }
  
  .team-intro {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
  
  .team-photo {
    height: 200px;
  }
  
  .team-info {
    padding: 1rem;
  }
}

/* Partnership Section */
.partnership-section {
  padding: 5rem 1.5rem;
  background: var(--civic-white);
}

.partnership-intro {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 3rem;
}

.partnership-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.partnership-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}

.partnership-step:hover {
  border-color: var(--primary);
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.partnership-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.cta-button {
 
  display: inline-block;       /* Keeps button inline */
  padding: 10px 20px;          /* Space inside */
  border: none;                /* Remove border */
  border-radius: 8px;          /* Rounded corners */
  background-color: #007BFF;   /* Button color */
  color: white;                /* Text color */
  font-size: 16px;             /* Font size */
  text-align: center;          /* Center text */
  white-space: normal;         /* Allow text wrapping */
  word-wrap: break-word;       /* Break long words if needed */
  line-height: 1.4;            /* Good spacing between lines */
  cursor: pointer;             /* Hand cursor */
  max-width: 250px;
}

.cta-button:hover {
  transform: translateY(-2px);
}

/* Story Section Styles */
.story-section {
  padding: 5rem 1.5rem;
  background: var(--civic-white);
}

.story-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.story-intro {
  font-size: 1.25rem;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 3rem;
  font-style: italic;
}

.story-section-block {
  margin-bottom: 4rem;
}

.block-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.block-text {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.highlight-text {
  font-size: 1.25rem;
  color: var(--foreground);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  padding: 1rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
  text-align: center;
  border-left: 4px solid var(--primary);
}

.highlight-text.bold {
  font-weight: 700;
  font-size: 1.375rem;
}

/* Detailed Timeline Styles */
.detailed-timeline-section {
  margin-bottom: 4rem;
}

.detailed-timeline {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.detailed-timeline::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.detailed-timeline-item {
  position: relative;
  padding-left: 5rem;
  margin-bottom: 3rem;
}

.timeline-marker {
  position: absolute;
  left: 1rem;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 1;
}

.timeline-content-detailed {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.timeline-header {
  margin-bottom: 1rem;
}

.timeline-location {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.timeline-date {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 600;
}

.timeline-text {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.timeline-quote {
  background: rgba(255, 215, 0, 0.1);
  border-left: 3px solid var(--primary);
  padding: 1rem;
  border-radius: var(--radius);
  font-style: italic;
  color: var(--foreground);
  margin-top: 1rem;
}

.timeline-highlight {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
  padding: 0.75rem;
  border-radius: var(--radius);
  margin: 1rem 0;
  text-align: center;
  font-weight: 500;
}

.timeline-highlight.bold {
  font-weight: 700;
}

.timeline-list {
  margin: 1.5rem 0;
}

.list-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.timeline-list ul {
  list-style: none;
  padding-left: 0;
}

.timeline-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
}

.timeline-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Model Section */
.model-section {
  margin-bottom: 4rem;
}

.section-subtitle {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.model-intro {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.7;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.insight-category {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.category-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.category-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.category-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-mark {
  color: #22c55e;
  font-weight: bold;
  flex-shrink: 0;
}

.bullet {
  color: var(--primary);
  font-weight: bold;
  flex-shrink: 0;
}

.category-item span:last-child {
  color: var(--muted-foreground);
  line-height: 1.5;
}

.category-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-style: italic;
}

/* Partnership Highlights */
.partnership-highlight {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 3rem;
}

.partnership-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.partnership-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
  text-align: center;
}

.partnership-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.partnership-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.point-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.point-content strong {
  display: block;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.point-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* Current State */
.current-state {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 3rem;
}

.current-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.current-intro {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  text-align: center;
  font-style: italic;
}

.current-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.7;
}

.current-support {
  margin-bottom: 2rem;
}

.support-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  text-align: center;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 215, 0, 0.05);
  border-radius: var(--radius);
}

.support-item .check-mark {
  color: #22c55e;
}

.support-item span:last-child {
  color: var(--muted-foreground);
}

.final-statement {
  text-align: center;
}

.statement-highlight {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.statement-highlight.bold {
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--primary);
}

/* Build Together */
.build-together {
  background: linear-gradient(135deg, var(--civic-dark) 0%, var(--civic-medium) 100%);
  color: var(--civic-white);
  border-radius: var(--radius);
  padding: 3rem 2rem;
}

.build-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-align: center;
}

.build-intro {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  text-align: center;
}

.partner-types {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.partner-type {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.partner-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.partner-type span:last-child {
  color: rgba(255, 255, 255, 0.9);
}

.build-cta {
  text-align: center;
}

.build-statement {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.build-final {
  margin-bottom: 1rem;
}

.build-tagline {
  font-size: 1.125rem;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.build-cta-button {
  background: var(--civic-gold);
  color: var(--civic-dark);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.build-cta-button:hover {
  background: #ffed4a;
  transform: translateY(-2px);
}

/* Why Exists Section */
.why-exists-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--civic-light) 0%, #e9ecef 100%);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.problem-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.problem-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.problem-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.problem-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.solution-content {
  text-align: center;
  margin-bottom: 3rem;
}

.solution-statement {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.solution-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 56rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 4rem 1rem 3rem;
  }

  #join-us{
    font-size: medium;
  }
  
  .timeline::before {
    left: 1rem;
  }
  
  .timeline-item {
    padding-left: 3rem;
  }
  
  .timeline-marker {
    left: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.75rem;
  }
  
  .company-timeline::before {
    left: 1rem;
    transform: none;
  }
  
  .company-timeline-item {
    flex-direction: row !important;
    padding-left: 3rem;
  }
  
  .company-timeline-item:nth-child(even) {
    flex-direction: row !important;
  }
  
  .timeline-year {
    position: absolute;
    left: -2rem;
    width: 4rem;
    height: 4rem;
    font-size: 0.875rem;
  }
  
  .timeline-content-main {
    margin: 0;
    max-width: none;
  }
  
  .partnership-points {
    gap: 1rem;
  }
  
  .partnership-point {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .partner-types {
    gap: 0.75rem;
  }
  
  .partner-type {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .problems-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .partnership-steps {
    grid-template-columns: 1fr;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
  }
  
  .support-grid {
    grid-template-columns: 1fr;
  }
}