.story-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    margin-bottom: 5rem;
}

.story-container h1 {
    text-align: center;
    color: #1565c0;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.story-header {
    margin-bottom: 3rem;
}

.story-header img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.story-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-section {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-section:hover {
    transform: translateY(-5px);
}

.story-section h2 {
    color: #1565c0;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.story-section img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin: 1rem 0;
}

.story-section p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .story-header img {
        height: 250px;
    }
    .story-content {
        grid-template-columns: 1fr;
    }
    .story-section {
        padding: 1.5rem;
    }
    .story-section img {
        height: 200px;
    }
}