/* --- Investments Page Styling --- */

.investments-page-main-content {
    padding-top: 0; /* Hero will handle header offset */
}

.investments-framework-page {
    padding: 60px 0; /* Adjusted padding */
    background-color: #ffffff;
}



.investments-framework-page .page-header {
    margin-bottom: 60px;
}

.investments-framework-page .page-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #212529;
}

.investments-framework-page .page-title span {
    color: var(--gold);
}

/* --- Hero Section --- */
.investments-hero {
    /* Overlay + curated Unsplash image */
    background: linear-gradient(rgba(17, 17, 17, 0.75), rgba(17, 17, 17, 0.75)),
        url('https://unsplash.com/photos/pfSwsArTGIM/download?force=true') center/cover no-repeat;
    margin-top: calc(var(--header-height) * -1); /* Pull under fixed header */
    padding: calc(140px + var(--header-height)) 0 120px;
    text-align: center;
    color: #fff;
}

.investments-hero .hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.investments-hero .hero-subtitle {
    font-size: 1.15rem;
    color: #e6e6e6;
    max-width: 820px;
    margin: 16px auto 0;
    line-height: 1.8;
}

.investments-hero .hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 28px;
    flex-wrap: wrap;
}

.investments-hero .cta {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.investments-hero .cta-primary {
    background: var(--gold);
    color: #1a1a1a;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.investments-hero .cta-primary:hover {
    transform: translateY(-2px);
    background: var(--gold-light);
}

.investments-hero .cta-secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;
}

.investments-hero .cta-secondary:hover {
    transform: translateY(-2px);
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.framework-card {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.framework-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.framework-card .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.framework-card .card-icon {
    color: var(--gold);
    font-size: 2.5rem;
    margin-right: 20px;
}

.framework-card .framework-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #343a40;
    margin: 0;
}

.framework-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.framework-list li {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.framework-list li::before {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 5px;
}

.framework-list li:last-child {
    margin-bottom: 0;
}

.framework-list strong {
    color: #343a40;
    font-weight: 600;
}

/* --- Prospectus Download Section --- */
.prospectus-download-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e9ecef;
}

.prospectus-cta-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #343a40;
    margin-bottom: 10px;
}

.prospectus-cta-subtitle {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn-prospectus {
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: inline-block;
}

.btn-prospectus:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: #fff;
}

.btn-prospectus .fa-download {
    margin-left: 10px;
    font-size: 1.2em;
}


/* --- Responsive Design --- */

@media (max-width: 992px) {
    .investments-page-main-content {
        padding-top: 0; /* Hero handles header offset */
    }
}

@media (max-width: 768px) {
    .investments-framework-page .page-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .framework-card {
        padding: 30px;
    }

    .framework-card .framework-title {
        font-size: 1.5rem; /* Reduce font size for card titles on mobile */
        word-wrap: break-word; /* Ensure long words wrap and don't overflow */
    }

    .btn-prospectus {
        width: 100%;
        padding: 18px;
    }
}
