/* Scoped styles for the issues section only */
.issues-section {
  background-color: #ffffff;
  padding: 4rem 2rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a1a1a;
}

.issues-section h3 {
  font-size: 2.2rem;
  color: #2d3748;
  margin-bottom: 1rem;
  font-weight: 600;
}

.issues-section p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 1rem;
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.issue-item {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: transform 0.3s ease;
}

.issue-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.issue-icon {
  font-size: 2.5rem;
  color: #c53030;
  margin-bottom: 1rem;
}

/* About Section Styles */
.about-section {
  background-color: #f7fafc;
  padding: 5rem 2rem;
  font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #0c131f;
}

.about-section h2 {
  font-size: 3rem;
  color: #1a365d;
  margin-bottom: 2rem;
  text-align: left;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Button already styled by .btn and .btn-primary */

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-section h2 {
    text-align: center;
    font-size: 2.5rem;
  }

  .about-text {
    order: 2;
  }

  .about-image {
    order: 1;
  }

  .about-img {
    max-width: 400px;
    margin: 0 auto;
  }
}

.about-section .btn {
  font-size: 2rem;
  padding: 1.4rem 3rem;
  min-width: 180px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}