@font-face {
    font-family: 'Nippo';
    src: url('public/fonts/nippo/Nippo-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Nippo';
    src: url('public/fonts/nippo/Nippo-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Nippo';
    src: url('public/fonts/nippo/Nippo-Extralight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Nippo';
    src: url('public/fonts/nippo/Nippo-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Nippo';
    src: url('public/fonts/nippo/Nippo-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nippo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #000000;
}

.header {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    padding: 20px 0;
    z-index: 100;
    opacity: 1;
    transition: opacity 0.8s ease-out;
}

/* Hide header during homepage particle animation only */
body.homepage:not(.content-visible) .header {
    opacity: 0;
}

body.content-visible .header {
    opacity: 1;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: #000000;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-family: 'Nippo', sans-serif;
    font-size: 15px;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    display: inline-block;
}

.nav-link:hover {
    background-color: #f5f5f5;
}

.nav-link.active {
    background-color: transparent;
}

.demo-button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-family: 'Nippo', sans-serif;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease;
    text-transform: lowercase;
    text-decoration: none;
}

.demo-button:hover {
    background-color: #333333;
}

.mobile-menu-button {
    display: none;
}

.chevron {
    font-size: 16px;
    font-weight: 600;
}

.main-content {
    height: calc(100vh - 80px);
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px 40px;
    overflow: hidden;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr auto 1.2fr;
    gap: 40px;
    max-width: 1600px;
    width: 100%;
    align-items: center;
}

/* Hide content initially, fade in after particles animation */
.left-column,
.right-column,
.logo-center {
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

.left-column,
.right-column {
    transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

body.content-visible .header,
body.content-visible .left-column,
body.content-visible .right-column,
body.content-visible .logo-center {
    opacity: 1;
}

body.content-visible .left-column,
body.content-visible .right-column {
    transform: translateY(0);
}

/* Stagger the fade-in */
body.content-visible .header {
    transition-delay: 0.03s;
}

body.content-visible .logo-center {
    transition-delay: 0.08s;
}

body.content-visible .left-column {
    transition-delay: 0.12s;
}

body.content-visible .right-column {
    transition-delay: 0.16s;
}

.left-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.right-column {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.section-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-block:hover .section-button {
    background-color: #d8d8d8;
}

.section-button {
    background-color: #e5e5e5;
    color: #000000;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'Nippo', sans-serif;
    font-size: 11px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s ease;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.section-button:hover {
    background-color: #d8d8d8;
}

.section-button .chevron {
    font-size: 8px;
    color: #000000;
}

.section-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    max-width: 800px;
}

.section-text-link {
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.section-text-link:hover .section-text {
    color: #333333;
}

.section-block:hover .section-button {
    background-color: #d8d8d8;
}

.left-column:hover .section-button {
    background-color: #d8d8d8;
}

.afm-number {
    font-size: 17px;
    color: #666666;
    margin-top: 8px;
}

.email {
    font-size: 14px;
    color: #000000;
}

.halo-icon-box {
    width: 80px;
    height: 80px;
    border: 2px dashed #cccccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

.halo-icon {
    width: 50px;
    height: 50px;
}

.particle-container {
    position: relative;
    width: 700px;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.logo-center {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.center-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    pointer-events: none;
}

/* Responsive design - Tablet */
@media (max-width: 1200px) and (min-width: 769px) {
    .main-content {
        padding: 20px 30px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr auto 1fr;
        gap: 30px;
        max-width: 100%;
    }
    
    .particle-container {
        width: 400px;
        height: 400px;
        flex-shrink: 0;
    }
    
    .section-text {
        max-width: 500px;
        font-size: 16px;
    }
    
    .left-column {
        gap: 16px;
    }
    
    .right-column {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        position: relative;
    }
    
    .hamburger {
        display: flex;
        order: 3;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .fund-page .nav-links .nav-link {
        color: #000000 !important;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .fund-page .nav-links .nav-link.active {
        color: #000000 !important;
    }
    
    .fund-page .nav-links .nav-link:hover {
        background-color: transparent;
        color: #333333;
    }
    
    .fund-page .nav-links .demo-button {
        background-color: #1a2332;
        color: #ffffff;
    }
    
    .nav-link {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid #f0f0f0;
        border-radius: 0;
    }
    
    .nav-link:hover {
        background-color: transparent;
        color: #333333;
    }
    
    .demo-button {
        display: none;
    }
    
    .mobile-menu-button {
        display: flex !important;
        width: 100%;
        margin-top: 20px;
        justify-content: center;
    }
    
    .hamburger {
        margin-left: 0;
    }
    
    .main-content {
        padding: 40px 20px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .left-column {
        order: 1;
    }
    
    .particle-container {
        order: 2;
    }
    
    .right-column {
        order: 3;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .section-block {
        gap: 8px;
    }
    
    .section-text {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .afm-number {
        font-size: 11px;
    }
    
    .section-button {
        font-size: 10px;
        padding: 5px 10px;
    }
    
    .particle-container {
        width: 100%;
        max-width: 400px;
        height: 200px;
        margin: 0 auto;
    }
    
    .section-button .chevron {
        display: none;
    }
}

/* About page styles */
.about-content {
    min-height: calc(100vh - 80px);
    background-color: #ffffff;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 40px;
}

.about-container {
    max-width: 1000px;
    width: 100%;
}

.about-section {
    margin-bottom: 100px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.date-badge {
    font-family: 'Nippo', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #000000;
    background-color: #e5e5e5;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
}

.section-label {
    font-family: 'Nippo', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666666;
}

.section-title {
    font-family: 'Nippo', sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    max-width: 900px;
}

.section-description {
    font-family: 'Nippo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;
    max-width: 800px;
}

.about-partners {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #e5e5e5;
}

.partners-title {
    font-family: 'Nippo', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 48px;
    letter-spacing: -0.3px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px 60px;
    align-items: center;
}

.partner-logo {
    width: 100%;
    height: auto;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Responsive about page */
@media (max-width: 768px) {
    .about-content {
        padding: 60px 20px;
    }
    
    .about-section {
        margin-bottom: 60px;
    }
    
    .section-header {
        margin-bottom: 24px;
        gap: 12px;
    }
    
    .date-badge {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .section-label {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .section-description {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .about-partners {
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .partners-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 30px 40px;
    }
    
    .partner-logo {
        max-width: 150px;
    }
}

/* Team page styles */
.team-section {
    margin-bottom: 100px;
}

.management-team-title {
    font-family: 'Nippo', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 48px;
    letter-spacing: -0.3px;
    text-transform: uppercase;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.team-photo {
    width: 100%;
    max-width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 24px;
    filter: grayscale(100%);
}

.team-name {
    font-family: 'Nippo', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}

.team-role {
    font-family: 'Nippo', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.team-buttons {
    display: flex;
    gap: 12px;
}

.team-button {
    font-family: 'Nippo', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #000000;
    background-color: #e5e5e5;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
}

.team-button:hover {
    background-color: #d8d8d8;
}

/* Responsive team page */
@media (max-width: 768px) {
    .team-section {
        margin-bottom: 60px;
    }
    
    .management-team-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .team-photo {
        max-width: 60%;
        height: auto;
        aspect-ratio: 1 / 1;
        margin: 0;
    }
    
    .team-name {
        font-size: 20px;
    }
    
    .team-role {
        font-size: 10px;
    }
    
    .team-button {
        font-size: 10px;
        padding: 6px 12px;
    }
}

/* Halo page styles */
html.halo-page,
body.halo-page {
    background-color: #ffffff !important;
    color: #000000;
}

.halo-page html,
.halo-page body {
    background-color: #ffffff !important;
}

.halo-page .halo-content {
    background-color: #ffffff !important;
    min-height: calc(100vh - 80px);
    padding: 120px 0 100px;
}

.halo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.halo-section {
    margin-bottom: 100px;
}

.halo-section .section-title,
.halo-section .section-description {
    color: #ffffff !important;
}

.halo-section .date-badge {
    background-color: #2a2a2a;
    color: #ffffff;
}

.halo-section .section-label {
    color: #999999;
}

.halo-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: start;
}

.halo-title-section {
    display: flex;
    align-items: flex-start;
}

.halo-title {
    font-family: 'Nippo', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.halo-description-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.halo-description {
    font-family: 'Nippo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.halo-button-container {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.halo-cta-button {
    font-family: 'Nippo', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #ffffff;
    background-color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.halo-cta-button:hover {
    background-color: #333333;
}

.halo-arrow {
    font-size: 10px;
    margin-left: 4px;
}

/* Contact form success message */
.contact-success-message {
    font-family: 'Nippo', sans-serif;
    padding: 24px 0;
    margin-bottom: 0;
    text-align: left;
}

.success-title {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.success-text {
    font-size: 13px;
    font-weight: 400;
    color: #e0e0e0;
    margin: 0;
    line-height: 1.6;
}

/* Halo page header adjustments */
.halo-page .header {
    background-color: #ffffff !important;
}

.halo-page .nav-link {
    color: #000000 !important;
}

.halo-page .nav-link:hover {
    background-color: #f5f5f5;
}

.halo-page .nav-link.active {
    color: #000000 !important;
    background-color: transparent;
}

.halo-page .demo-button {
    background-color: #000000;
    color: #ffffff;
}

.halo-page .demo-button:hover {
    background-color: #333333;
}

.halo-page .hamburger span {
    background-color: #000000;
}

.halo-page .logo {
    filter: none;
}

/* Responsive halo page */
@media (max-width: 768px) {
    .halo-page .halo-content {
        padding: 80px 0 60px;
    }
    
    .halo-container {
        padding: 0 24px;
    }
    
    .halo-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .halo-title {
        font-size: 28px;
    }
    
    .halo-description {
        font-size: 14px;
        margin-bottom: 32px;
    }
    
    .halo-button-container {
        width: 100%;
    }
    
    .halo-cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Fund page styles */
.fund-hero {
    background: linear-gradient(135deg, #1a2332 0%, #2a3a4f 25%, #1a4a6b 50%, #2a3a4f 75%, #1a2332 100%);
    background-size: 200% 200%;
    animation: gradientFlow 8s ease infinite;
    padding: 80px 40px;
    max-width: 1200px;
    margin: 40px auto 0;
    text-align: center;
    position: relative;
    z-index: 1;
    border-radius: 24px;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.fund-hero-label {
    font-family: 'Nippo', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.fund-hero-title {
    font-family: 'Nippo', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* Fund page header styling */
.fund-page .header {
    background-color: #ffffff;
    z-index: 101;
}

.fund-page .nav-link {
    color: #000000 !important;
}

.fund-page .nav-link:hover {
    background-color: #f5f5f5;
}

.fund-page .nav-link.active {
    color: #000000 !important;
    background-color: transparent;
}

@media (max-width: 768px) {
    .fund-page .nav-link {
        color: #000000 !important;
    }
    
    .fund-page .nav-link.active {
        color: #000000 !important;
    }
    
    .fund-page .nav-link:hover {
        color: #333333 !important;
    }
    
    .halo-page .nav-link {
        color: #000000 !important;
    }
    
    .halo-page .nav-link.active {
        color: #000000 !important;
    }
    
    .halo-page .nav-link:hover {
        color: #333333 !important;
    }
    
    .halo-page .nav-links .demo-button {
        background-color: #1a2332;
        color: #ffffff;
    }
}

.fund-page .demo-button {
    background-color: #000000;
    color: #ffffff;
}

.fund-page .demo-button:hover {
    background-color: #e5e5e5;
}

.fund-page .hamburger span {
    background-color: #000000;
}

.fund-page .logo {
    filter: none;
}

.fund-section {
    margin-top: -20px;
    margin-bottom: 100px;
}

.fund-page .about-content {
    padding-bottom: 80px;
}

.performance-chart-container {
    width: 100%;
    margin: 48px 0;
    overflow-x: auto;
}

#performanceChart {
    width: 100%;
    height: 400px;
    display: block;
}

.performance-table-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 48px;
}

.performance-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Nippo', sans-serif;
    font-size: 12px;
    font-weight: 400;
}

.performance-table thead {
    border-bottom: 1px solid #000000;
}

.performance-table th {
    text-align: left;
    padding: 12px 8px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000000;
    font-size: 11px;
}

.performance-table td {
    padding: 12px 8px;
    color: #00a86b;
    border-bottom: 1px solid #e5e5e5;
}

.performance-table tbody tr:last-child td {
    border-bottom: none;
}

.performance-table .year-cell {
    color: #000000;
    font-weight: 400;
}

.performance-table .ytd-cell {
    background-color: #fffacd;
    color: #000000;
    font-weight: 400;
}

/* Responsive fund page */
@media (max-width: 768px) {
    .fund-hero {
        padding: 60px 30px;
        margin: 30px 20px 0;
        border-radius: 16px;
    }
    
    .fund-section {
        margin-top: -40px;
        margin-bottom: 60px;
    }
    
    .fund-hero-label {
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .fund-hero-title {
        font-size: 32px;
    }
    
    .fund-section {
        margin-bottom: 60px;
    }
    
    .performance-chart-container {
        margin: 32px 0;
    }
    
    #performanceChart {
        height: 300px;
    }
    
    .performance-table {
        font-size: 10px;
    }
    
    .performance-table th,
    .performance-table td {
        padding: 8px 4px;
    }
    
    .performance-table th {
        font-size: 9px;
    }
}

/* Fund information section */
.fund-info-section {
    margin-top: 100px;
    margin-bottom: 100px;
}

.fund-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.fund-info-block {
    display: flex;
    flex-direction: column;
}

.fund-info-title {
    font-family: 'Nippo', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 32px;
    letter-spacing: -0.3px;
}

.fund-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
}

.fund-info-item:last-child {
    border-bottom: none;
}

.fund-info-label {
    font-family: 'Nippo', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fund-info-value {
    font-family: 'Nippo', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #000000;
    text-align: right;
}

/* Responsive fund info */
@media (max-width: 768px) {
    .fund-info-section {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    
    .fund-info-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .fund-info-title {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .fund-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 0;
    }
    
    .fund-info-value {
        text-align: left;
    }
}

/* Fund documents section */
.fund-documents-section {
    margin-top: 100px;
    margin-bottom: 100px;
}

.fund-documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.fund-document-column {
    display: flex;
    flex-direction: column;
}

.fund-document-title {
    font-family: 'Nippo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #1a2332;
    margin-bottom: 16px;
    letter-spacing: -0.2px;
}

.fund-document-divider {
    height: 1px;
    background-color: #e5e5e5;
    margin-bottom: 20px;
}

.fund-document-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.fund-document-item:hover {
    opacity: 0.7;
}

.fund-document-icon {
    font-family: 'Nippo', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #ffffff;
    background-color: #1a2332;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fund-document-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.fund-document-name {
    font-family: 'Nippo', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #1a2332;
    line-height: 1.4;
}

.fund-document-meta {
    font-family: 'Nippo', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #999999;
}

/* Responsive fund documents */
@media (max-width: 768px) {
    .fund-documents-section {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    
    .fund-documents-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .fund-document-title {
        font-size: 16px;
    }
}

/* Fund disclaimer bar */
.fund-disclaimer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 16px 40px;
    border-top: 1px solid #e5e5e5;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.fund-disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.fund-disclaimer-text {
    font-family: 'Nippo', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    text-align: center;
}

.fund-disclaimer-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Responsive disclaimer bar */
@media (max-width: 768px) {
    .fund-disclaimer-bar {
        padding: 12px 20px;
    }
    
    .fund-disclaimer-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .fund-disclaimer-text {
        font-size: 11px;
    }
    
    .fund-disclaimer-icon {
        width: 18px;
        height: 18px;
    }
}

/* Contact page styles */
.contact-content {
    padding: 120px 40px 100px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    width: 100%;
}

.contact-modal {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 60px;
    position: relative;
    margin-bottom: 80px;
    border: 1px solid #4a4a4a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    font-family: 'Nippo', sans-serif;
    line-height: 1;
    font-weight: 300;
}

.contact-close:hover {
    opacity: 0.7;
}

.contact-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
}

.contact-modal-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #4a4a4a;
    transform: translateX(-50%);
}

.contact-section-left,
.contact-section-right {
    display: flex;
    flex-direction: column;
    padding: 0 40px;
}

.contact-section-left {
    padding-right: 60px;
}

.contact-section-right {
    padding-left: 60px;
}

.contact-section-title {
    font-family: 'Nippo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.contact-section-description {
    font-family: 'Nippo', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #e0e0e0;
    margin-bottom: auto;
    line-height: 1.6;
    margin-top: 8px;
}

.contact-section-right .contact-section-description {
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 8px;
    flex: 1;
}

.contact-input-group {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-label {
    font-family: 'Nippo', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.contact-input {
    font-family: 'Nippo', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #e0e0e0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 0;
    outline: none;
    transition: border-color 0.2s ease;
}

.contact-input::placeholder {
    color: #e0e0e0;
    opacity: 0.7;
}

.contact-input:focus {
    border-bottom-color: #ffffff;
    color: #ffffff;
}

.contact-button {
    font-family: 'Nippo', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #e0e0e0;
    background: transparent;
    border: 1px solid #e0e0e0;
    padding: 10px 28px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: flex-start;
    margin-top: auto;
    margin-bottom: 0;
    text-decoration: none;
    display: inline-block;
}

.contact-button:hover {
    color: #ffffff;
    border: 1px solid #ffffff;
}

.contact-address-section {
    text-align: center;
}

.contact-address-title {
    font-family: 'Nippo', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 32px;
    letter-spacing: -0.3px;
}

.contact-address-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-address-line {
    font-family: 'Nippo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    margin: 0;
}

/* Responsive contact page */
@media (max-width: 768px) {
    .contact-content {
        padding: 100px 20px 80px;
        background-color: #ffffff;
    }
    
    .contact-modal {
        padding: 40px 24px;
        margin-bottom: 60px;
    }
    
    .contact-modal-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-modal-grid::before {
        display: none;
    }
    
    .contact-section-left,
    .contact-section-right {
        padding: 0;
        padding-bottom: 40px;
    }
    
    .contact-section-right {
        padding-bottom: 0;
    }
    
    .contact-section-description {
        margin-bottom: 32px;
    }
    
    .contact-form {
        gap: 24px;
    }
    
    .contact-button {
        width: 100%;
        text-align: center;
    }
    
    .contact-address-title {
        font-size: 20px;
        margin-bottom: 24px;
    }
}

