/* ========================================
   ABOUT PAGE SPECIFIC STYLES
   ======================================== */

/* About Hero Section */
/* Standardized hero section padding and sizes across all breakpoints */
.about-hero-section {
  position: relative;
  padding: 200px 0 120px;
  background: linear-gradient(135deg, #0a1929 0%, #1a2332 50%, #0a1929 100%);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.about-hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Content Section */
.about-content-section {
  padding: 80px 0;
  background: white;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.content-block {
  margin-bottom: 3rem;
}

.content-block h2 {
  font-size: 2rem;
  color: var(--color-blue-primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-left: 1.5rem;
  padding-right:.5rem;
  background: rgba(64, 202, 238, 0.1);
  border-left: 4px solid var(--color-blue-light);
}

.content-block p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.content-block p strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Checklist Styles */
.checklist {
  margin: 2rem 0;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-left:10px;
}

.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: var(--color-blue-primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

.check-icon svg {
  width: 16px;
  height: 16px;
  color: white;
}

.checklist-item p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.6;
}

.setup-time {
  margin-top: 2rem;
  font-size: 1.125rem;
}

.highlight-text {
  color: var(--color-light-blue);
  font-weight: 700;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Mobile (< 768px) */
@media (max-width: 767px) {
  .about-hero-section {
    padding: 80px 0;
    min-height: 400px;
    margin-top:80px;
  }

  .about-hero-title {
    font-size: 2.25rem;
  }

  .about-hero-subtitle {
    font-size: 1.125rem;
  }

  .about-content-section {
    padding: 60px 0;
  }

  .content-block {
    margin-bottom: 2.5rem;
  }

  .content-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .content-block p {
    font-size: 1rem;
  }

  .checklist-item {
    gap: 0.75rem;
  }

  .check-icon {
    width: 22px;
    height: 22px;
  }

  .check-icon svg {
    width: 14px;
    height: 14px;
  }

  .checklist-item p {
    font-size: 1rem;
  }
}
