


.history-section {
    background-color: var(--color-white);
}

.history-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.history-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

.values-section {
    background-color: var(--color-light);
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.how-it-works-section {
    background-color: var(--color-white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
}

.info-section {
    background-color: var(--color-light);
}

.info-card {
    text-align: center;
}
