/* Common styles for text pages */
.text-page-section{
  background: linear-gradient(180deg,rgba(232, 234, 246, 1) 0%, rgba(255, 255, 255, 1) 100%);
}
/* Main content container */
.text-page-main {
    max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  min-height: calc(100vh - 200px);
}
.report-page-main {
  max-width: 920px;
  margin: 0 auto;
  padding: 60px 24px;
  min-height: calc(100vh - 200px);
  display: flex;
    flex-direction: column;
}
.corp-page-main {
    max-width: 920px;
  margin: 0 auto;
  padding: 10px 24px;
  min-height: calc(100vh - 200px);
}
hr{
  border: 0.5px solid #DDDDDD;
    display: flex;
    width: 100%;
    margin: 0px;
}
/* Page title */
.page-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  text-align: left;
  margin: 0 0 48px 0;
}

/* Section titles */
.section-title {
  font-size: 24px !important;
  font-weight: 600 !important;
  line-height: 1.3;
  color: #333;
  margin: 32px 0 16px 0;
}

.section-title:first-of-type {
  margin-top: 0;
}

/* Content text */
.content-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
  margin: 0 0 20px 0;
  text-align: justify;
}

.content-text:last-child {
  margin-bottom: 0;
}

/* Lists */
.content-list {
  font-size: 18px;
  line-height: 1.6;
  color: #333333;
  margin: 16px 0;
  padding-left: 24px;
}

.content-list li {
  margin-bottom: 8px;
}

/* Emphasis text */
.emphasis {
  font-weight: 600;
  color: #2F3DA2;
}

/* Contact information */
.contact-info {
  background-color: #f8f9fa;
  border-left: 4px solid #2F3DA2;
  padding: 20px;
  margin: 24px 0;
  border-radius: 0 4px 4px 0;
}

.contact-info .contact-title {
  font-size: 20px;
  font-weight: 600;
  color: #2F3DA2;
  margin: 0 0 12px 0;
}

.contact-info .contact-text {
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  margin: 0;
}

/* Table styles for structured data */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 16px;
}

.info-table th,
.info-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.info-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #2F3DA2;
}

.info-table td {
  color: #333333;
}

/* Date and signature section */
.document-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
  text-align: right;
  font-size: 16px;
  color: #666666;
}

/* Corporate governance styles */
.corp-gov-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.corp-gov-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  border-radius: 8px;
  padding: 24px 20px;
}
.corp-gov-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.corp-gov-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.corp-gov-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}
.corp-gov-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  margin-bottom: 8px;
}
.corp-gov-desc {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .corp-gov-item {
    flex-direction: column;
    align-items: start;
    text-align: left;
    gap: 16px;
    padding: 16px 8px;
  }
  .corp-gov-content {
    align-items: start;
  }
}
.corp-gov-page-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: left;
  margin: 48px 0 32px 0;
  letter-spacing: -1px;
  display: block;
  width: 100%;
}
@media (max-width: 480px) {
  .corp-gov-page-title {
    font-size: 22px;
    margin: 32px 0 18px 0;
  }
}

/* Responsive design */
@media (max-width: 1024px) {
  .text-page-main {
    padding: 50px 20px;
  }
}

@media (max-width: 800px) {
  .report-page-main{
    padding-top: 10px;
  }
  h1.text-report{
    font-size: 24px !important;
  }
  
  .text-page-main {
    padding: 40px 16px;
  }
  p.text-report{
    font-size: 14px !important;
  }
  h2.text-report{
    font-size: 18px !important;
  }
  .page-title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  
  .section-title {
    font-size: 18px !important;
  }
  
  .content-text,
  .content-list {
    font-size: 14px;
  }
  
  .contact-info {
    padding: 14px;
  }
  
  .contact-info .contact-title {
    font-size: 18px;
  }
  
  .contact-info .contact-text {
    font-size: 15px;
  }
  
  .info-table {
    font-size: 14px;
  }
  
  .info-table th,
  .info-table td {
    padding: 8px;
  }
  .content-list li{
    font-size: 14px;
  }
}


/* Download/report CTA button for text pages */
.report-download-btn {
  width: 239px;
  height: 50px;
  border-radius: 14px;
  background-color: #2F3DA2;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
}
.report-download-btn:hover {
  background-color: #253288;
}
p.text-report{
  font-size: 18px;
  color: #141414;
}
h1.text-report{
  font-size: 32px;
    color: #141414;
}
h2.text-report{
  font-size: 24px;
    color: #141414;
}