/* Fund Info Styling */
.fund-info-section {
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ccc;
    text-align: center;
}

.fund-info-section h1 {
    font-size: 2em;
    color: #2d572c;
    margin-bottom: 20px;
}

.fund-info-section p {
    text-align: left;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.fund-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fund-details div {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1.5em;
    color: #2d572c;
}

/* Success Stories Styling */
.story {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.story img {
    max-width: 150px;
    margin-right: 20px;
    border-radius: 8px;
}

.story p {
    font-size: 1.2em;
}

/* FAQ Styling */
.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.faq-item h2 {
    font-size: 1.5em;
    color: #2d572c;
    cursor: pointer;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    font-size: 1.2em;
}

/* Apply For Funds Form Styling */
#apply-for-funds form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#apply-for-funds .form-row {
    width: 100%;
    margin-bottom: 15px;
    text-align: left;
}

#apply-for-funds .form-row label {
    display: block;
    margin-bottom: 5px;
    font-size: 1em;
}

#apply-for-funds .form-row input,
#apply-for-funds .form-row textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

#apply-for-funds button {
    padding: 10px 20px;
    background-color: #2d572c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s;
}

#apply-for-funds button:hover {
    background-color: #1e3e1e;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .fund-info-section {
        width: 90%;
    }
}
