@import url(https://fonts.bunny.net/css?family=montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i);

:root {
    --bg-color: rgb(222 236 230);
    --color-white: #fff;
    --var-field: #065f4620;
    --var-green: #065f46;
}

* {
    font-family: "Montserrat", sans-serif;
}

body {
    background-color: var(--bg-color);
}

a {
    font-weight: 600;
    color: var(--var-green);
    text-decoration: none;
}

.container {
    max-width: 1440px;
    width: 90%;
    margin: 5% auto;
    background-color: var(--color-white);
    border-radius: 10px;
    padding: 56px;
}

.section-image {
    max-width: 100%;
    height: auto;
}

.right-col img.section-image {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    border-radius: 50px 0 50px 0;
    box-shadow: 40px 40px 0 -15px #d2e2da;
}

.left-col img:not(.esg-logo) {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    border-radius: 50px 0 0 50px;
    box-shadow: -40px 40px 0 -15px #d2e2da;
}

.un-global {
    margin: 20px 0;
}

.un-global a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1a73e8;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.un-global a:hover {
    background-color: #1557b0;
}

.two-col {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 2rem;
    gap: 5rem;
}

.left-col, .right-col {
    width: 50%;
    position: relative;
}

.right-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 2rem;
}

.right-col img[src*="report_top"] {
    width: 100%;
    height: 576px;
    object-fit: cover;
    border-radius: 0 100px 0 100px;
    box-shadow: -30px 30px 0 rgba(222, 236, 230, 1);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.esg-logo {
    height: 80px;
    object-fit: contain;
}

.left-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1em;
}

.data-table-section {
    margin-top: 2rem;
    overflow-x: auto;
}

.esg-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.esg-table th, 
.esg-table td {
    padding: 12px;
    text-align: left;
    border: none;
    border-bottom: 1px solid #eee;
}

.esg-table tr:nth-child(even) {
    background-color: var(--var-field);
}

.esg-table th {
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #ddd;
}

.section-header {
    font-weight: 700;
    color: #333;
    letter-spacing: 0.5px;
}

.esg-table i.fas {
    color: #666;
    font-size: 16px;
}

.esg-table .info-icon {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.esg-table .info-icon:hover {
    opacity: 1;
    cursor: pointer;
}

.esg-table th:first-child {
    font-size: 32px;
}

.esg-table th, .esg-table td:first-child {
    width: 100%;
    max-width: 50%;
}

.esg-table th, .esg-table td:nth-child(2) {
    width: 50px;
}

.esg-table .sub-header {
    background-color: #f5f5f5;
    font-weight: bold;
    font-style: italic;
}

.biodiversity-table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.biodiversity-table td {
    padding: 8px;
    border: 1px solid #ddd;
}

.biodiversity-table tr:first-child td {
    background-color: #e8f5e9;
    font-weight: bold;
}

.biodiversity-accordion {
    margin-bottom: 1rem;
}

.biodiversity-accordion-header {
    background-color: #f8f9fa;
    padding: 1rem;
    cursor: pointer;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.biodiversity-accordion-header:hover {
    background-color: #e9ecef;
}

.biodiversity-accordion-content {
    display: none;
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

.biodiversity-accordion.active .biodiversity-accordion-content {
    display: block;
}

.biodiversity-accordion-header .toggle-icon {
    transition: transform 0.3s ease;
}

.biodiversity-accordion.active .biodiversity-accordion-header .toggle-icon {
    transform: rotate(180deg);
}

.mt-4 {
    margin-top: 20px;
}

.section-subheader {
    font-size: 14px !important;
    font-weight: 500;
    color: black !important;
}

/* SDG Goals Styling */
.sdg-goals-section {
    margin: 2rem 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.sdg-goals-section h2 {
    padding: 1.5rem;
    margin: 0;
    border-bottom: 1px solid #eee;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.sdg-goal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    background: #fff;
    transition: background-color 0.2s ease;
}

.sdg-goal-item:hover {
    background: #f8f9fa;
}

.goal-left {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    width: 65%;
    padding-right: 2rem;
}

.goal-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.goal-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.goal-text {
    flex: 1;
}

.goal-text h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #333;
    line-height: 1.4;
}

.goal-description {
    font-size: 0.875rem;
    color: #666;
    margin: 0.5rem 0 0 0;
    line-height: 1.5;
}

.goal-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.goal-info {
    display: flex;
    align-items: center;
    padding: 0.25rem;
    transition: opacity 0.2s ease;
}

.goal-info:hover {
    opacity: 0.8;
    cursor: pointer;
}

.goal-info img {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}

.goal-unit {
    color: #666;
    font-size: 0.875rem;
    min-width: 50px;
    text-align: right;
}

.goal-value, .goal-target, .goal-final {
    min-width: 50px;
    text-align: right;
    font-weight: 600;
    color: #333;
    font-size: 0.9375rem;
}

.goal-separator {
    color: #666;
    padding: 0 0.25rem;
    opacity: 0.5;
}

/* Table goal styles */
.goal-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.goal-content .goal-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
}

.goal-content .goal-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.goal-content .goal-text {
    flex: 1;
}

.goal-content .goal-text h3 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    color: #333;
}

.goal-content .goal-description {
    font-size: 0.875rem;
    color: #666;
    margin: 0.25rem 0 0 0;
    line-height: 1.4;
}

h2, .esg-table th:first-child, h1 {
    color: var(--var-green)
}

.container .sdg-section img {
    width: 100%;
    object-fit: contain;
}

.sdg-left {
    display: flex;
    flex-direction: row;
    gap: 1em;
    align-items: center;
}

.sdg-image img {
    width: 75px;
    height: 75px;
}

.bio-location {
    font-size: 14px !important;
    font-weight: 500;
    color: black !important;
}

.container {
    margin-bottom: 20px !important;
}

.bus_small {
    font-size: 14px;
    font-weight: bold;
}

.bus_efforts, .bus_violations {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 1rem;
}

h4 {
    font-weight: 600;
}

.conduct_title {
    font-weight: bold;
}

table.governane_table {
    text-align: left;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.report-header {
    text-align: center;
    margin-bottom: 3rem;
}

.company-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.company-info h1 {
    font-size: 2.5rem;
    color: var(--color-esg365-green-2);
    margin-bottom: 0.5rem;
}

.year {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
}

.report-sections {
    display: grid;
    gap: 2rem;
}

.report-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.report-section h2 {
    color: var(--var-green);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
}

.data-group {
    margin-bottom: 2rem;
}

.data-group h3 {
    color: var(--color-esg365-green-2);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.data-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.data-item .label {
    flex: 0 0 200px;
    font-weight: 500;
    color: #495057;
}

.data-item .value {
    flex: 1;
    color: #212529;
}

.data-item .goal {
    margin-left: 1rem;
    color: var(--color-esg365-green-2);
    font-style: italic;
}

.data-item .goal {
    margin-left: 1rem;
    color: var(--color-esg365-green-2);
    font-style: italic;
}

.data-table-section {
    margin-top: 2rem;
}

.esg-table {
    width: 100%;
    border-collapse: collapse;
}

.esg-table th,
.esg-table td {

    text-align: left;
}

.esg-table th {}

.section-header {
    background-color: #fff;
    font-weight: bold;
}

.biodiversity-accordion {
    margin-bottom: 1rem;
}

.biodiversity-accordion-header {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    cursor: pointer;
}

.biodiversity-accordion-header .toggle-icon {
    float: right;
    font-size: 1.5rem;
}

.biodiversity-accordion-content {
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.daughter-companies {
    margin: 1.5rem 0;
}

.daughter-companies .section-header {
    margin-bottom: 1rem;
}

.daughter-company-accordion {
    border-radius: 4px;
    margin-bottom: 0.5rem;
    background: #fff;
}

.daughter-company-header, .business-partner-header {
    background-color: var(--var-field);
    padding: 0.75rem 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.daughter-company-header:hover, .business-partner-header:hover {
    background-color: #0a5c4310;
}

.daughter-company-header h4, .business-partner-header h4 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--var-green);
}

.toggle-icon {
    color: var(--var-green);
    font-weight: bold;
    transition: transform 0.2s ease;
}

.daughter-company-content, .business-partner-content {
    padding: 1rem;
    display: none;
    border-top: 1px solid #eee;
}

.daughter-company-content.active, .business-partner-content.active {
    display: block;
}

.daughter-company-content .info-group, .business-partner-content .info-group {
    margin: 0;
}

.daughter-company-content .info-item, .business-partner-content .info-item {
    margin-bottom: 0.5rem;
}

.sdg-goals-section {
    margin: 2rem 0;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.sdg-goals-section h2 {
    padding: 1rem;
    margin: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.sdg-goals-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
}

.sdg-goal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.goal-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 60%;
}

.goal-icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.goal-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.goal-text {
    flex: 1;
}

.goal-description {
    font-size: 0.9rem;
    color: #666;
    margin: 0.25rem 0 0 0;
    line-height: 1.4;
}

.goal-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.goal-info {
    display: flex;
    align-items: center;
}

.info-icon {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

.goal-unit {
    color: #666;
    font-size: 0.9rem;
    min-width: 40px;
    text-align: right;
}

.goal-value,
.goal-target {
    margin: 2rem 0;
}

.biodiversity-section .mt-4 {
    margin-top: 2rem;
}

.biodiversity-section table td {
    padding: 0.75rem;
    vertical-align: middle;
}

.biodiversity-section table th {
    padding: 0.75rem;
    font-weight: 600;
    text-align: left;
}

.goal-final {
    min-width: 40px;
    text-align: right;
    font-weight: 500;
    color: #333;
}

.goal-separator {
    color: #666;
    padding: 0 0.5rem;
}

.calc-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.calc-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    z-index: 1001;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.calc-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.calc-modal-close {
    cursor: pointer;
    background: none;
    border: none;
    font-size: 24px;
    padding: 0;
    color: #666;
    line-height: 1;
}

.calc-modal-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.calc-modal-body {
    color: #333;
    line-height: 1.5;
}

/* Keep existing info-icon styles */
.info-icon {
    cursor: pointer;
}

/* Add new styles for company information */
.company-info {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.company-info h4 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.company-logo {
    max-width: 150px;
    height: auto;
    display: block;
}

.info-group {
    margin-bottom: 1rem;
}

.info-item {
    margin-bottom: 0.5rem;
}

.info-item strong {
    margin-right: 0.5rem;
}

.location-info {
    color: #6c757d;
}

.content.un_global p {
    column-count: 2;
}

.un_global_endorser {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
}   

.certificate-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1em;
    margin-bottom: 2rem;
}

.certificate-image {
    width: 50%;
    text-align: center;
}

.certificate-info {
    width: 50%;
}

.pre_footer {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    padding: 1rem;
    background-color: #F2F7F5;
    border-radius: 5px;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    margin-top: 10rem;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.certificate-image img {
    max-width: 100%;
    max-height: 200px;
}

.location-info {
    margin-bottom: .5rem;
  }

  .calc-modal-footer {
    margin-top: 1rem;
    background-color: var(--var-field);
    padding: 20px;
    border-radius: 5px;
    color: var(--var-green);
  }

  .biodiversity-section > table:nth-child(1) > thead:nth-child(1) > tr:nth-child(3) > th:nth-child(1), .mt-4 > thead:nth-child(1) > tr:nth-child(1) > th:nth-child(1), table.esg-table:nth-child(13) > tbody:nth-child(1) > tr:nth-child(1) > th:nth-child(1), .biodiversity-section > table:nth-child(2) > thead:nth-child(1) > tr:nth-child(1) > th:nth-child(1), th.section-header {
    font-size: inherit !important;
    color: #333 !important;
  font-weight: 700;
  }

  .certificate-name {
    font-weight: 600;
  }

  .report-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
  }

  .report-top-left, .report-top-right {
    width: 50%;
  }

  .report-top-right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 1em;
  }

  .report-top-right img {
    height: 250px;
    object-fit: contain;
  }
  
  .disclaimer p {
    font-size: 14px;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }


  /* Error pages */
  .error-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 96vh;
    width: 100%;
  }

  .error-content {
    text-align: center;
  }

  b:not(td b) {
    color: var(--var-green);
    font-weight: 600;
  }

  .business-partner-accordion {
    margin-bottom: 1rem;
  }