.try-this-section {
  padding: 20px;
  text-align: center;
}

.try-this-section h2{
    font-weight: bold;
    color: white;
    background: #a9f0f5;
    padding: 10px 25px;
    border-radius: 25px;
    display: inline-block;
    margin: 0 auto;
}

.try-this-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.try-this-card {
  background: #a9f0f5;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ✅ Keep videos responsive */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.try-this-card h3 {
  font-size: 16px;
  margin: 10px 0;
  color: #c71585;
}

.try-this-card a {
  color: #c71585;
  text-decoration: underline;
  font-size: 14px;
}

.try-this-description {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.6;
  color: #c71585;
}

.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.popup:target {
  visibility: visible;
  opacity: 1;
}

.popup-box {
  background: #a9f0f5;
  color: #c71585;
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  max-width: 450px;
  width: 90%;
  position: relative;
}

.popup-box h2 {
  color: #ff4d80;
  margin-bottom: 15px;
}

.popup-box ul {
  text-align: left;
  margin-left: 20px;
}

.popup-box li {
  margin-bottom: 6px;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  color: #888;
  text-decoration: none;
  font-weight: bold;
}

.popup-close:hover {
  color: #ff4d80;
}

@media (max-width: 1024px) {

  .try-this-section h2 {
    margin: 20px;
  }

  .try-this-container {
    display: inline;
  }

  .try-this-card {
    width: 95%;
    margin: 20px auto;
  }

  .try-this-card h3,
  .try-this-card a {
    font-size: 2rem;
  }

  .try-this-description {
    font-size: 2rem;
  }

  .popup-box {
    max-width: none;
    max-height: none;
  }

  .popup-box h2,
  .popup-box strong,
  .popup-box ul,
  .popup-box li {
    font-size: 2rem;
  }
}