/* ===========================
   ACCORDION STİLLERİ
   =========================== */

.accordion-section {
  margin: 0;
}

/* Alternating content section içindeki accordion için */
.alternating-content-section--with-accordion .accordion-section {
  margin-top: 40px;
  margin-bottom: 0;
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 4px 12px rgba(237, 233, 233, 0.1);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 28px 20px;
  background: var(--color-green);
  color: #ffffff;
  border: none;
  border-radius: 48px;
  text-align: left;
  font-family: var(--font-family-primary);
  font-size: 20px;
  font-weight: bold;
}

.accordion-header__text {
  flex: 1;
  line-height: 1.4;
}

.accordion-content {
  background: #ffffff;
  overflow: visible;
}

.accordion-content__inner {
  padding: 20px 0 0 0;
  color: var(--color-gray-dark);
  font-size: 20px;
  line-height: 1.6;
}

.accordion-content__inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion-content__inner li {
  position: relative;
  padding-left: 0;
}

.accordion-content__inner li::before {
  content: "•";
  color: var(--color-green);
  font-weight: bold;
  margin-right: 8px;
}

.accordion-content__inner p {
  margin: 0;
}

.accordion-content__inner p + p {
  margin-top: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .accordion-section {
    margin: 40px 0;
  }

  .accordion-list {
    gap: 12px;
  }

  .accordion-item {
    padding: 16px;
  }

  .accordion-header {
    padding: 14px 20px;
    font-size: 16px;
  }

  .accordion-content__inner {
    padding: 14px;
    font-size: 14px;
  }
}
.text-section__content {
  padding: 16px;
}
/* ===========================
   TEXT SECTION STİLLERİ
   =========================== */

.text-section {
  margin: 60px 0;
}

.text-section__title {
  color: var(--color-green);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px 0;
}

.text-section__text {
  color: var(--color-gray-dark);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.text-section__text p {
  margin: 0 0 16px 0;
}

.text-section__text p:last-child {
  margin-bottom: 0;
}

/* Responsive */
/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .text-section {
    margin: 50px 0;
  }

  .text-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .text-section__title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .text-section__text {
    font-size: 18px;
  }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  .text-section {
    margin: 20px 0;
  }
  .text-section__content {
    font-size: 14px;
  }
  .text-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .text-section__title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .text-section__text {
    font-size: 14px;
  }
}

/* ===========================
   DETAIL 2 EMPTY NOTICE
   =========================== */

.detail2-empty-notice {
  color: var(--color-gray-dark);
  font-size: 20px;
  text-align: center;
  margin: 60px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .detail2-empty-notice {
    font-size: 16px;
    margin: 40px 0;
  }
}
