.hero-section {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.cta-button {
  background-color: #009688;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}



.educational-content {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.left-column, .right-column {
  width: 45%;
}

.image-carousel {
  /* Add carousel-specific CSS here */
}

.infographics {
  /* Add infographic-specific CSS here */
}


.featured-wildlife {
  text-align: center;
  padding: 20px;
}

.cta-button {
  background-color: #009688;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.call-to-action {
  text-align: center;
  padding: 20px;
  background-color: #f0f0f0;
}

.cta-button {
  background-color: #009688;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}


.scroll-animation {
  /* Add specific animation CSS here */
}

.wildlife-image[data-scroll] {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.wildlife-image[data-scroll].visible {
  opacity: 1;
}


.rescue-organizations {
  padding: 20px;
}

.organization-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  border: 1px solid #ddd;
  padding: 10px;
  margin-bottom: 20px;
}


.protected-areas-map {
  padding: 20px;
}

#interactive-map {
  width: 100%;
  height: 400px;
}



.featured-video {
  text-align: center;
  padding: 20px;
}

.featured-video iframe {
  width: 80%;
  height: 400px;
  border: none;
}


.photo-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.gallery-image {
  flex: 1 1 300px;
  margin: 10px;
}

.gallery-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

// This is for the Arizona's conservation-Efforts wildlife cards"
.conservation-overview {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  color: #333;
}

.conservation-overview h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00796b;
}

.conservation-overview p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.program-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.program-card {
  background: #fff;
  padding: 20px;
  width: 280px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.program-card img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 15px;
}

.program-card h3 {
  font-size: 1.4rem;
  color: #00796b;
  margin-bottom: 10px;
}

.program-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.learn-more {
  display: inline-block;
  background-color: #00796b;
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.learn-more:hover {
  background-color: #005a4f;
}


//This is for the Two Column list with Circles
        .two-column-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            max-width: 800px;
            margin: auto;
        }
        .two-column-item {
            display: flex;
            align-items: center;
            background: #f0f0f0;
            border-radius: 10px;
            padding: 10px 15px;
            width: 90%;
        }
        .circle {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #007bff;
            margin-right: 10px;
        }

