.main-container {
  background: rgba(255, 255, 255, 0);
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(34, 54, 89, 0.17);
  max-width: 550px;
  width: 100%;
  padding: 30px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease-in-out;
}

.tab-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  background: #f0f4fc;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(34, 54, 89, 0.06);
  padding: 8px;
}

.tab {
  flex: 1 1 auto;
  padding: 10px;
  font-size: 1rem;
  border: none;
  background: none;
  border-radius: 10px;
  cursor: pointer;
  color: #F0801A;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.tab:hover {
  background: #e4ecff;
}

.tab.active {
  background: none;
  color: #F0801A;
  position: relative;
}

.tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #F0801A 0%, #f39b49 100%);
  border-radius: 2px;
}
.thumb-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  max-width: 30%;
  border-radius: 6px;
}
.main-large-image {
  width: 100%;
  height: 500px; /* You can adjust to 450px, 500px etc. as needed */
  object-fit: cover;
  border-radius: 8px;
}


.tab:focus-visible {
  outline: 2px solid #3d5af1;
}

.tab-content {
  padding: 22px 16px;
  min-height: 160px;
  background: #f5fafe;
  border-radius: 0 0 13px 13px;
  box-shadow: 0 3px 18px #b3e1fc30;
  font-size: 1.08rem;
  color: #1d3250;
  animation: fadeIn 0.45s cubic-bezier(0.6, 0.18, 0.21, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

ul li {
  margin-bottom: 11px;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

ul li::before {
  content: "\f111";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #F0801A;
  font-size: 0.45em;
  position: absolute;
  left: 0;
  top: 0.65em;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

td {
  padding: 10px 12px;
  background: #e4f0fd;
  border-radius: 8px;
}

td:first-child {
  font-weight: bold;
  width: 40%;
}

@media (max-width: 768px) {
  .main-container {
    max-width: 95%;
    padding: 20px;
  }

  .tab {
    font-size: 0.92rem;
    padding: 8px;
  }

  .tab-content {
    font-size: 1rem;
    padding: 18px 14px;
  }

  td {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .tab-menu {
    flex-direction: column;
    align-items: stretch;
  }

  .tab {
    justify-content: flex-start;
  }
}
