/* ===== HERO SECTION ===== */
.contact-img { 
  height: 67vh;
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.7)
    ),
    url('../../assets/join-us/join-us-background.webp');
  flex-direction: column;
}

/* ===== TYPOGRAPHY ===== */
ol {
  letter-spacing: 0.5px;
  justify-items: flex-start;
  font-size: 1.2rem;
}

/* ===== ISSUE CARDS ===== */
.issue-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.issue-card:hover {
  transform: translateY(-5px);
}

.issue-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.issue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.issue-card:hover .issue-image img {
  transform: scale(1.1);
}

.urgency-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 15px;
  border-radius: 20px;
  background: var(--primary-color);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
}

.issue-content {
  padding: 1.5rem;
}

/* ===== JOIN US SECTION ===== */
.join-us-section {
  background-color: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
}

.join-us-content {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.join-us-content ol {
  list-style: none;
  font-weight: 400;
  display: flex;
  gap: 10px;
}

.join-us-content ol li {
  border: 2px dashed #ffd28e;
  height: 20%;
  width: 20%;
  border-radius: 10%;
}

/* ===== JOIN SECTION TYPOGRAPHY ===== */
.join h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.join p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

/* ===== JOIN OPTIONS CARDS ===== */
.join-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.option-card {
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 20px;
  width: 300px;
  transition: transform 0.3s ease;
}

.option-card:hover {
  transform: translateY(-10px);
}

.option-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.option-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

/* ===== BUTTONS ===== */
.option-card .btn {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #007bff;
  color: #fff;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn-warning {
  background-color: #ffc107;
  color: #fff;
}

.btn-warning:hover {
  background-color: #e0a800;
  color: #fff;
}

.btn-success {
  background-color: #28a745;
  color: #fff;
}

.btn-success:hover {
  background-color: #1e7e34;
}
