/* Import global styles */
@import url('global.css');

/* About Hero Section */
.about-hero {
    padding: 20px 0 60px 0;
    text-align: center;
    margin-bottom: 10px;
}

.about-hero-content h1 {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.about-hero-content .lead {
    font-size: 1.5rem;
    color: var(--text-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}
.hero-image-section {
  text-align: center;
  margin-top: 10px;
}

.hero-image-section img {
  max-width: 85%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}


/* ==============================
   VALUES SECTION
   ============================== */

.values {
  padding: 60px 0;
  margin-bottom: 20px;
  text-align: center;
}

/* Container that holds all cards side by side */
.values {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
}

/* Each card */
.value-card {
  flex: 1 1 300px; /* grow/shrink with a minimum width */
  max-width: 350px;
  background: var(--background-50);
  border: 1px solid var(--background-200);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all .7s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-800);
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.value-card p {
  color: var(--text-600);
  font-size: 1rem;
  line-height: 1.6;
}

/* ==============================
   RESPONSIVE ADJUSTMENTS
   ============================== */

@media (max-width: 1024px) {
  .value-card {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .values {
    flex-direction: column;
    align-items: center;
  }

  .value-card {
    width: 90%;
    max-width: 400px;
  }
}
/* Timeline Section */
.process-section {
    padding: 20px 0;
    margin-bottom: 40px;
}

.process-section h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -0.03em;
}

.process {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.process::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-300);
}

.process-item {
    position: relative;
    margin-bottom: 40px;
}

.process-marker {
    position: absolute;
    left: -49px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-600);
    border: 4px solid var(--background-50);
    border-radius: 50%;
}

.process-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-600);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.process-content p {
    color: var(--text-600);
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 40px 0;
    margin-bottom: 40px;
}

.cta-content {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
    padding: 60px 40px;
    border-radius: 20px;
    color: var(--background-50);
}

.cta-content h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.03em;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-content .btn-primary {
    background-color: var(--background-50);
    color: var(--primary-700);
    font-size: 1rem;
    padding: 14px 32px;
    text-decoration: none;
}

.cta-content .btn-primary:hover {
    background-color: var(--background-100);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero-content .lead {
        font-size: 1.1rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .mission-text h2 {
        font-size: 2rem;
    }

    .mission-image .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }

    .values-section h2,
    .process-section h2,
    .team-section h2 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process {
        padding-left: 30px;
    }

    .process-marker {
        left: -39px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-content {
        padding: 40px 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

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