.subscription-details {
  padding: 60px 20px;
  width: 90%;
  justify-self: center;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #451519;
}

.plans-breakdown {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 60px;
}

.plan-box {
  flex: 1 1 300px;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  transition: 0.3s;
}

.plan-box h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #982223;
}

.plan-box p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
}

.plan-box ul {
  padding-left: 20px;
  list-style-type: disc;
  color: #555;
}

html[dir="rtl"] .plan-box ul {
  padding-right: 20px;
  padding-left: 0;
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.table-heading {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #4d7cb1;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 8px;
  overflow: hidden;
  min-width: 600px;
}

.comparison-table th, .comparison-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.comparison-table th {
  background: #4d7cb1;
  color: white;
  font-weight: bold;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}


.faq-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.faq-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.faq-left {
  flex: 1 1 40%;
}

.faq-left h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #4d7cb1;
}

.faq-left p {
  font-size: 1rem;
  color: #666;
}

.faq-right {
  flex: 1 1 50%;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4d7cb1;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
  font-size: 0.95rem;
  color: #444;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}


@media screen and (max-width: 768px) {
  .plans-breakdown {
    flex-direction: column;
    align-items: center;
  }

  .plan-box {
    width: 100%;
    max-width: 500px;
  }

  .comparison-table {
    font-size: 14px;
  }
}