* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --bg: #f4f6f3;
    --surface: #ffffff;
    --surface-soft: #edf2ec;
    --surface-soft-2: #e7efe9;
    --text: #172119;
    --muted: #5a665c;
    --brand: #2f5d46;
    --brand-soft: #4d7a63;
    --line: #c8d6cd;
    --border: #d7e0d9;
    --shadow: 0 10px 30px rgba(23, 33, 25, 0.06);
    --radius-lg: 24px;
    --radius-md: 16px;
    --header-height: 84px;
}
body {
    font-family: Verdana, Arial, sans-serif;
    background: linear-gradient(to bottom, #f9fbf8 0%, var(--bg) 100%);
    color: var(--text);
}
iframe {
    font-family: Verdana, Arial, sans-serif !important;
    border-radius: 0 !important;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    height: var(--header-height);
    background: rgba(249, 251, 248, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.brand {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text);
    text-transform: uppercase;
}
.brand span {
    color: var(--brand);
}
.header-note {
    font-size: 0.95rem;
    color: var(--muted);
}
.page {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 24px 48px;
}
.menu-toggle {
    display: none;
    border: none;
    background: var(--brand);
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.sidebar {
    width: 300px;
    flex-shrink: 0;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    box-shadow: var(--shadow);
    position: sticky;
    top: calc(var(--header-height) + 24px);
}
.sidebar-title {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 18px;
}
.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nav-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-decoration: none;
    color: var(--brand-soft);
    font-size: 0.98rem;
    line-height: 1.35;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        border-color 0.2s ease;
}
.nav-list a::after {
    content: "→";
    font-size: 1rem;
    flex-shrink: 0;
    opacity: 0.8;
}
.nav-list a:hover {
    background: var(--surface-soft);
    border-color: var(--border);
    transform: translateX(2px);
}
.nav-list a.active {
    background: var(--surface-soft-2);
    border-color: #bfd0c3;
    font-weight: 700;
}
.content {
    flex: 1;
    min-width: 0;
}
.content-panel {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--border);
    border-radius: 32px;
    box-shadow: var(--shadow);
    padding: 44px;
}
.page-title {
    font-size: clamp(2.5rem, 5vw, 3rem);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}
.title-line {
    height: 3px;
    width: 100%;
    max-width: 760px;
    background: linear-gradient(to right, var(--brand-soft), #d7e4db);
    border-radius: 999px;
    margin-bottom: 48px;
}
.section {
    padding-bottom: 56px;
    margin-bottom: 56px;
    border-bottom: 1px solid var(--line);
}
.section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(300px, 360px);
    gap: 40px;
    align-items: start;
}
.section-title {
    font-size: clamp(2rem, 4vw, 2rem);
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.03em;
}
.section-subtext {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 720px;
}
.widget-frame {
    width: 100%;
    border: 2px solid var(--brand);
    border-radius: 24px;
    background: var(--surface);
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    padding: 15px;
}
.widget-frame iframe {
    width: 100%;
    border: 0;
    display: block;
    background: #fff;
    border-radius: 0 !important;
}

.widget-frame.regulatory iframe{
    height: 300px
} 

.widget-frame.no-fixed-height iframe {
    height: auto;
}
.full-iframe iframe {
    height: 1000px;
}
.tab-header {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
.tab-button {
    appearance: none;
    border: 1px solid var(--border);
    background: var(--surface-soft);
    color: var(--text);
    border-radius: 12px;
    padding: 12px 18px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}
.tab-button.active {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}
.tab-panel {
    display: none;
}
.tab-panel.active {
    display: block;
}
.docs-table-wrap,
.shareholder-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.7);
}
.docs-table,
.shareholder-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}
.docs-table thead th {
    background: var(--brand);
    color: #fff;
    text-align: left;
    padding: 18px;
    font-size: 1rem;
}
.docs-table thead th:first-child {
    border-top-left-radius: 20px;
}
.docs-table thead th:last-child {
    border-top-right-radius: 20px;
    text-align: center;
}
.shareholder-table th {
    background: var(--surface-soft-2);
    color: var(--brand);
    text-align: left;
    padding: 14px 16px;
}
.docs-table tbody tr:nth-child(odd),
.shareholder-table tbody tr:nth-child(odd) {
    background: rgba(23, 33, 25, 0.03);
}
.docs-table tbody tr:nth-child(even),
.shareholder-table tbody tr:nth-child(even) {
    background: rgba(23, 33, 25, 0.01);
}
.docs-table td,
.shareholder-table td {
    padding: 16px 18px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(200, 214, 205, 0.7);
}
.docs-table td:first-child {
    font-weight: 700;
    width: 26%;
    white-space: nowrap;
}
.docs-table td:last-child {
    width: 120px;
    text-align: center;
}
.doc-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--brand);
    color: var(--brand);
    text-decoration: none;
    border-radius: 10px;
    background: #fff;
    transition:
        transform 0.15s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}
.doc-link:hover {
    transform: translateY(-1px);
    background: #f7fbf8;
    box-shadow: 0 6px 14px rgba(23, 33, 25, 0.08);
}
.doc-icon {
    width: 18px;
    height: 18px;
}
.rich-text {
    display: grid;
    gap: 18px;
}
.rich-text p,
.rich-text li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
}
.rich-text ul {
    padding-left: 24px;
    display: grid;
    gap: 8px;
}
.info-grid {
    display: grid;
    gap: 18px;
}
.info-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
}
.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--brand);
}
.info-card p {
    line-height: 1.7;
}
.info-card a {
    color: var(--brand);
    text-decoration: none;
}
.info-card a:hover {
    text-decoration: underline;
}
@media (max-width: 980px) {
    .page {
        gap: 28px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .widget-frame {
        max-width: 100%;
    }
    .content-panel {
        padding: 32px;
    }
    .full-iframe iframe {
        height: 760px;
    }
}
@media (max-width: 768px) {
    :root {
        --header-height: 74px;
    }
    .header-inner {
        padding: 0 18px;
    }
    .header-note {
        display: none;
    }
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .page {
        display: block;
        padding: 20px 18px 28px;
    }
    .sidebar {
        position: fixed;
        top: var(--header-height);
        left: -320px;
        width: 280px;
        height: calc(100vh - var(--header-height));
        overflow-y: auto;
        border-radius: 0 22px 22px 0;
        z-index: 1000;
        transition: left 0.25s ease;
        background: rgba(255, 255, 255, 0.97);
    }
    .sidebar.open {
        left: 0;
    }
    .content-panel {
        border-radius: 24px;
        padding: 24px;
    }
    .title-line {
        margin-bottom: 36px;
    }
    .section {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    .section-subtext {
        font-size: 1rem;
    }
    .widget-frame.no-fixed-height iframe {
        height: auto;
    }
    .full-iframe iframe {
        height: 640px;
    }
}

.aim-table-wrap {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.7);
}

.aim-table {
  width: 100%;
  border-collapse: collapse;
}

.aim-table tr {
  border-bottom: 1px solid var(--line);
}

.aim-table tr:nth-child(even) {
  background: rgba(23,33,25,0.03);
}

.aim-table td {
  padding: 18px 20px;
  vertical-align: top;
}

.aim-table .label {
  width: 35%;
  font-weight: 700;
  color: var(--text);
}

.aim-table .value {
  width: 65%;
  color: var(--muted);
  line-height: 1.6;
}

.aim-table a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.aim-table a:hover {
  text-decoration: underline;
}
