/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    color: #666;
    background-color: #fff;
    line-height: 1.7em;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #2ea3f2;
    text-decoration: none;
}

a:hover {
    opacity: 0.7;
}

h1, h2, h3, h4, h5, h6 {
    color: #333;
    padding-bottom: 10px;
    line-height: 1em;
    font-weight: 500;
}

p {
    padding-bottom: 0.5em;
}

p:last-child {
    padding-bottom: 0;
}

strong {
    font-weight: 700;
}

/* Page Container */
#page-container {
    padding-top: 0px !important;
    margin-top: -1px !important;
}

/* Main Section Layout */
.main-section {
    padding: 0;
    margin: 0;
}

.main-row {
    display: flex;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
}

/* Left Column with Background Image */
.left-column {
    width: 50%;
    background-image: url('background-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 14%;
    padding-left: 10px;
    position: relative;
}

.spacer {
    padding-right: 52px;
    padding-bottom: 313px;
    margin-bottom: 40px !important;
    width: 99.6%;
}

.spacer:before {
    width: auto;
    top: 0px;
    right: 52px;
    left: 0px;
}

/* Right Column with Content */
.right-column {
    width: 50%;
    background-color: #fff;
    padding-left: 30px;
    display: flex;
    align-items: center;
}

.content-box {
    background-color: rgba(0, 0, 0, 0);
    padding: 14px 8.3%;
    margin-bottom: 30px;
    width: 100%;
}

.content-box h1 {
    font-family: 'Trebuchet', 'Trebuchet MS', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 37px;
    color: #06b2ae !important;
    line-height: 1.4em;
    margin-bottom: 20px;
}

.fund-details {
    color: #848484 !important;
    font-family: 'Trebuchet', 'Trebuchet MS', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 600;
    margin-bottom: 30px;
}

.fund-details {
    margin-bottom: 20px;
}

.fund-details strong {
    color: #666;
}

.about-text {
    color: #666;
    line-height: 1.7em;
}

.about-text a {
    color: #2ea3f2;
}

/* Responsive Styles */
@media (max-width: 980px) {
    .main-row {
        flex-direction: column;
    }
    
    .left-column,
    .right-column {
        width: 100%;
    }
    
    .left-column {
        min-height: 300px;
        padding-left: 0px;
    }
    
    .right-column {
        padding-left: 0px;
        padding: 30px 20px;
    }
    
    .content-box {
        padding: 20px;
    }
    
    .content-box h1 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .content-box h1 {
        font-size: 26px;
    }
    
    .left-column {
        min-height: 250px;
    }
    
    .right-column {
        padding: 20px 15px;
    }
    
    .fund-details {
        font-size: 13px;
    }
    
    .about-text {
        font-size: 13px;
    }
}

@media (max-width: 479px) {
    .content-box h1 {
        font-size: 22px;
    }
    
    .right-column {
        padding: 15px 10px;
    }
    
    .content-box {
        padding: 15px;
    }
    
    .left-column {
        min-height: 200px;
    }
}
