
.intro p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
}

/* Section Styles */
.service-details-page .section {
    margin-bottom: 40px;
    padding: 20px 0;
   
}



.section ul {
    list-style: none;
    padding: 0;
}

.section ul li {
    font-size: 1rem;
    margin: 10px 0;
    line-height: 1.5;
}

.section ul li strong {
    color: #ee4242;
}

/* Types of Mutual Funds Section */
.types {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.service-details-page .card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-details-page .card:hover {
    transform: translateY(-5px);
}

.service-details-page .card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    padding-top: 10px;
}

.service-details-page .card p {
    font-size: 1rem;
    color: #555;
}

/* Call to Action */
.cta {
    text-align: center;
    padding: 30px 0;
    background: #f0631f;
    color: #fff;
    border-radius: 8px;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta .btn {
    padding: 10px 20px;
    font-size: 1.2rem;
    background: #fff;
    color: #f0631f;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta .btn:hover {
    background: #ffd6b8;
    color: #f0631f;
}

.section.mt-5.other-services .card {
    background: #0056b3;
    color: #000;
    margin-top: 20px;
    max-width: 25%;
    padding: 10px 20px;
    cursor: pointer;
    margin-right: 7px;
}
.section.mt-5.other-services .card h3 {
    color: #fff;
    cursor: pointer;
    text-align: center;
}