

body {
  background-color: #f8f9fa;
}
.info-heading {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0c9c4f 0%, #0bb259 100%) !important;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 80px 0 100px 0;
  min-height: 260px;
}

.info-title {
  font-family: "Figtree", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  color: #f9f9f9;
  margin-bottom: 15px;
}

.info-subtitle {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #e2e2e2;
  opacity: 0.95;
}

.info-meta {
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 14px;
  color: #ffffff;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.takeaway-section {
  padding: 60px 0;
}

.takeaway-card {
  position: relative;
  overflow: hidden;
  min-height: 307px;
  display: flex;
  align-items: center;
  padding: 40px;
  justify-content: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/assets/images/info_bg.jpg") no-repeat center center;
  background-size: cover;
}

.takeaway-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.takeaway-text h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.takeaway-text p {
  color: #eaeaea;
  font-size: 18px;
  max-width: 825px;
  width: 100%;
  font-weight: 500;
  margin-bottom: 0;
  opacity: 0.9;
}

.info-detail-section {
  padding: 60px 0;
  background: #fff;
}

.info-content-block {
  margin-bottom: 48px;
  scroll-margin-top: 100px;
}

.info-section-title {
  font-size: 22px;
  font-weight: 700;
  color: #062d1a;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.info-section-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #062d1a;
  margin-bottom: 16px;
  padding-bottom: 10px;
}

.info-detail-section .col-lg-8 {
  max-width: 100%;
  min-width: 0;
}

.info-text {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 14px;
  width: 100%;
  word-wrap: break-word;
}

.info-list {
  padding-left: 20px;
  margin-bottom: 0;
  max-width: 880px;
}

.info-list li {
  font-size: 14px;
  color: #444;
  word-wrap: break-word;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* Sidebar */
.info-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.sidebar-share {
  display: flex;
  align-items: center;
  gap: 12px;
}

.share-label {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.share-icons {
  display: flex;
  gap: 10px;
}

.share-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #f0faf5;
  border: 1px solid #e0f0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0c9c4f;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s;
}

.share-icon:hover {
  background: #0c9c4f;
  color: #fff;
}

.sidebar-block {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 20px 24px;
}

.toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 16px;
}

.sidebar-title {
  font-size: 16px;
  font-weight: 700;
  color: #062d1a;
  margin: 0;
}

.toc-header i {
  font-size: 16px;
  color: #333;
  transition: transform 0.3s;
}

.toc-header i.rotated {
  transform: rotate(180deg);
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.toc-list.hidden {
  display: none;
}

.toc-list li a {
  font-size: 14px;
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}

.toc-list li a:hover {
  color: #0c9c4f;
}
