body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.8;
}

header {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    text-align: center;
    padding: 3.5em 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1em;
}

section {
    background: white;
    padding: 4em 0;
    margin: 2em 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.story-image, .testimonial-image {
    width: 120px;
    border-radius: 50%;
    margin: 1em auto;
    display: block;
}

.step {
    padding: 1.5em;
    margin: 1em 0;
    border-left: 5px solid #6a11cb;
    background: #f4f4f4;
    transition: all 0.3s ease;
}

.step:hover {
    background: #e3e3e3;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 2em 0;
}

.testimonial-slider {
    width: 80%;
    margin: 0 auto;
}

.testimonial {
    text-align: center;
    padding: 2.5em;
    height: fit-content;
}

.slick-list {
    height: fit-content !important;
}


