/* ABOUT SECTION */

.about-header {
    padding-top: 140px;
    text-align: center; /* Center the text */
    padding-bottom: 40px;
}

.about-header h1 {
    font-size: 2.8em; /* Increase the font size */
    font-weight: 700; /* Bold text for emphasis */
    color: #333; /* Darker color for contrast */
    margin: 0; /* Remove any default margins */
}

.about-section {
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 20px;
}

.about-section h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px; /* Reduce space below main heading */
    font-size: 2.6em;
    font-weight: 700;
}

.about-section h2 {
    text-align: center;
    color: #333;
    font-size: 2.2em;
    border-bottom: 2px solid #e0e0e0; /* Add a subtle divider */
    padding-bottom: 5px; /* Reduce padding for the divider */
    width: 60%;
    margin: 30px auto 20px auto;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    text-align: left;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.separator {
    text-align: center;
    margin: 40px 0; /* Add space around the separator */
    overflow: hidden;
}

.separator img {
    width: 100%; /* Ensure the image is responsive */
    /*height: 500px;*/
    object-fit: cover;
    object-position: center;
}

#fund-of-funds-thesis {
    padding-bottom: 80px;
}

/* MOBILE STYLES */

@media (max-width: 768px) {
    .about-section {
        padding: 0px 40px 20px 40px;
    }

    .about-section h2 {
        width: 100%;
    }

    .about-section p {
        text-align: center;
    }
}