body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 0;
}

.success-stories {
    background-color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.success-stories h2 {
    font-size: 32px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.success-stories .intro-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.testimonial-item {
    background-color: #fafafa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.testimonial-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.testimonial-item p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.testimonial-item span {
    font-weight: bold;
    color: #333;
}
