/* Success Stories Section */
.success-stories {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.success-stories h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.stories-carousel {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.story {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    max-width: 380px;
    margin: 5px;
    transition: transform 0.3s;
}

.story img {
    width: 100%;
    height: auto;
}

.story h3 {
    font-size: 20px;
    margin: 20px 0 10px;
}

.story p {
    padding: 0 20px;
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
    text-align: left;
}

.story .read-more {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.story .read-more:hover {
    background-color: #1b6698;
    color: white;
}

.story:hover {
    transform: translateY(-5px);
}

.more-stories {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.more-stories:hover {
    background-color: #1b6698;
}

/* Responsive Styles */
@media(max-width: 860px) {
    .success-stories h2 {
        font-size: 28px;
    }

    .stories-carousel {
        flex-direction: column;
        align-items: center;
    }

    .story {
        width: 90%;
    }

    .story h3 {
        font-size: 17px;
    }

    .story p {
        font-size: 14px;
    }
}