/* Our Story Section */
.our-story {
    padding: 40px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.our-story h2 {
    font-size: 40px;
    color: #00b33c;
    margin-bottom: 40px;
}

.story-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s;
}

.story-card:hover {
    transform: translateY(-10px);
}

.story-year {
    background-color: #00b33c;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 10px;
    flex-shrink: 0;
}

.story-image img {
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.story-content {
    text-align: left;
    flex-grow: 1;
}

.story-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.story-content p {
    font-size: 16px;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .story-card {
        flex-direction: column;
        text-align: center;
    }

    .story-content {
        text-align: center;
    }

    .story-image img {
        max-width: 100%;
    }

    .our-story h2{
        font-size: 32px;
    }

    .story-year{
        font-size: 20px;
    }

    .story-content h3 {
        font-size: 20px;
    }

    .story-content p {
        font-size: 14px;
    }

}
