/* About Page Styles */

.about-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #FAFAF9;
}

.about-header {
  background: white;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #E5E5E5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.about-header .logo {
  margin: 0;
}

.about-header .logo-image {
  height: 40px;
  width: auto;
}

.back-link {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: #FF6B35;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
  flex: 1;
}

.about-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro {
  font-size: 1.25rem;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.about-section {
  margin-bottom: 3rem;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.about-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.about-section p {
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.about-section li {
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.about-section strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* Process Steps */
.process-steps {
  margin-top: 2rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f0f0f0;
}

.step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.step-content p {
  margin-bottom: 0.75rem;
}

.step-content ul {
  margin-top: 0.75rem;
}

/* Ranking List */
.ranking-list {
  margin-top: 1.5rem;
}

.ranking-item {
  padding: 1.25rem;
  background: #FAFAF9;
  border-left: 3px solid #FF6B35;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.ranking-item:last-child {
  margin-bottom: 0;
}

.ranking-item strong {
  display: block;
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.ranking-item p {
  margin-bottom: 0;
  color: #4a4a4a;
}

/* Savings Example */
.savings-example {
  color: #FF6B35;
  font-weight: 600;
  background: #FFF5F2;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: white;
}

.cta-section h2 {
  color: white;
  font-size: 2rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: white;
  color: #FF6B35;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Footer */
.about-page footer {
  background: white;
  border-top: 1px solid #E5E5E5;
  padding: 2rem;
  text-align: center;
}

.about-page footer p {
  color: #666;
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-content {
    padding: 2rem 1.5rem;
  }

  .about-content h1 {
    font-size: 2rem;
  }

  .intro {
    font-size: 1.1rem;
  }

  .about-section {
    padding: 1.5rem;
  }

  .about-section h2 {
    font-size: 1.5rem;
  }

  .step {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .about-header {
    padding: 1rem 1.5rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-content {
    padding: 1.5rem 1rem;
  }

  .about-content h1 {
    font-size: 1.75rem;
  }

  .about-section {
    padding: 1.25rem;
  }
}
