/* =========================================
   About Page - About Fetchabl
   ========================================= */

.page-header {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #2a3640 100%);
  padding: 3rem 2rem;
  text-align: center;
  color: white;
  margin-bottom: 3rem;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: white;
}

.title-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: white;
}

.page-subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
  margin: 0;
  font-weight: 300;
}

/* Main Content */
.about-content {
  padding: 1.5rem;
  background-color: var(--color-background-main);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.section {
  margin-bottom: 4.5rem;
}

.section h2 {
  font-size: 1.75rem;
  color: var(--color-text-main);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  display: inline-block;
  background: linear-gradient(90deg, var(--color-primary) 0%, #ff8566 100%);
  background-position: left bottom;
  background-size: 100% 3px;
  background-repeat: no-repeat;
}

.section p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-main);
  margin-bottom: 1rem;
}

/* Why We Started Section with Image */
.why-we-started-section {
  margin-bottom: 4.5rem;
}

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

.why-text h2 {
  margin-top: 0;
}

.why-image {
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1rem;
  line-height: 1.8;
}

.features-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.features-list strong {
  color: var(--color-text-main);
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

/* Values Grid */
.values-grid {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.value-card {
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
}

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

.value-icon {
  display: none;
}

.value-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.25rem 0;
  color: var(--color-text-main);
  font-weight: 700;
}

.value-card p {
  font-size: 1rem;
  margin: 0;
  color: #666;
  line-height: 1.8;
}

/* CTA Section */
.cta-section {
  background-color: var(--color-light-accent);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background-color: #ff5630;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 110, 74, 0.3);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: #2a3640;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(54, 70, 82, 0.3);
}

/* Responsive */
@media (min-width: 768px) {
  .cta-buttons {
    flex-direction: row;
  }
}

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

  .content-wrapper {
    padding: 0;
  }

  .page-title {
    font-size: 1.75rem;
  }

  .title-icon {
    width: 1.75rem;
    height: 1.75rem;
  }
}

/* =========================================
   PAAG Compliance Section
   ========================================= */

.paag-section {
  margin-bottom: 3rem;
}

.paag-section h2 {
  font-size: 1.75rem;
  color: var(--color-text-main);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  display: inline-block;
  background: linear-gradient(90deg, var(--color-primary) 0%, #ff8566 100%);
  background-position: left bottom;
  background-size: 100% 3px;
  background-repeat: no-repeat;
}

.paag-container {
  max-width: 100%;
}

.paag-header-about {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.paag-icon {
  display: none;
}

.paag-header-about h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin: 0;
  padding-bottom: 0.5rem;
  display: inline-block;
  background: linear-gradient(90deg, var(--color-primary) 0%, #ff8566 100%);
  background-position: left bottom;
  background-size: 100% 3px;
  background-repeat: no-repeat;
}

.paag-intro {
  font-size: 1rem;
  color: var(--color-text-main);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.paag-content-about h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin: 1rem 0 0.75rem 0;
}

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

.paag-list li {
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-main);
}

.paag-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.paag-list li strong {
  color: var(--color-text-main);
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.paag-links-about {
  margin-top: 1.5rem;
}

.paag-links-about p {
  color: var(--color-text-main);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.paag-link-about {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  border: none;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.paag-link-about:hover {
  background: #ff8566;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.paag-link-about:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.link-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .paag-section {
    margin-bottom: 2rem;
  }

  .paag-header-about {
    gap: 0.75rem;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .paag-icon {
    width: 2rem;
    height: 2rem;
  }

  .paag-header-about h2 {
    font-size: 1.4rem;
  }

  .paag-intro {
    font-size: 1rem;
  }

  .paag-list li {
    padding: 1rem 0;
    margin-bottom: 1rem;
  }

  .paag-link-about {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    font-size: 0.95rem;
    padding: 0.65rem 1rem;
  }

  .features-list li {
    padding: 1rem 0;
    margin-bottom: 1rem;
  }

  .values-grid {
    margin: 2rem 0;
  }

  .value-card {
    padding: 1rem 0;
    margin-bottom: 1rem;
  }

  .why-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
