#section-10 {
  padding: 50px 25px;
  background: var(--secondary-col);
  color: var(--tertiary-col);
}

.sec10-con {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec10-header {
  text-align: center;
  margin-bottom: 50px;
  width: 100%;
}

.sec10-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-family: var(--font1), serif;
  color: var(--tertiary-col);
  margin-bottom: 10px;
  font-weight: 600;
}

.sec10-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #666;
  font-family: var(--font3), serif;
  line-height: 1.6;
}

.sec10-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;
}

.sec10-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sec10-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.card-image-wrapper {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f0f0f0;
}

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

.sec10-card:hover .card-image {
  transform: scale(1.05);
}

.card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.card-heading {
  font-size: 1.5rem;
  font-family: var(--font1), serif;
  color: var(--tertiary-col);
  margin-bottom: 12px;
  font-weight: 600;
}

.card-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  font-family: var(--font3), serif;
}

.card-btn {
  display: inline-block;
  background: var(--tertiary-col);
  color: var(--secondary-col);
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 0.95rem;
  border: 2px solid var(--tertiary-col);
  cursor: pointer;
}

.card-btn:hover {
  background: transparent;
  color: var(--tertiary-col);
  border-color: var(--tertiary-col);
}

/* ===== TABLET BREAKPOINT (768px) ===== */
@media (max-width: 768px) {
  #section-10 {
    padding: 40px 20px;
  }

  .sec10-header {
    margin-bottom: 35px;
  }

  .sec10-title {
    font-size: 1.8rem;
  }

  .sec10-cards-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .card-image-wrapper {
    height: 200px;
  }

  .card-content {
    padding: 20px;
  }

  .card-heading {
    font-size: 1.3rem;
  }

  .card-description {
    font-size: 0.9rem;
  }
}

/* ===== MOBILE BREAKPOINT (480px) ===== */
@media (max-width: 480px) {
  #section-10 {
    padding: 30px 15px;
  }

  .sec10-header {
    margin-bottom: 25px;
  }

  .sec10-title {
    font-size: 1.4rem;
  }

  .sec10-subtitle {
    font-size: 0.85rem;
  }

  .sec10-cards-container {
    gap: 20px;
  }

  .card-image-wrapper {
    height: 180px;
  }

  .card-content {
    padding: 15px;
  }

  .card-heading {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .card-description {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }

  .card-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}
