.story, .story-section {
    text-align: left;
    text-indent: 2rem;
}

h2 {
    text-align: center;
}

.carousel-section {
    padding: 2rem;
    text-align: center;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 420px;
    margin: 0 auto;
}

.carousel-images {
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
    position: relative;
    z-index: -2;
}

.carousel-img {
    display: none;
    width: 100%;
    height: 375px;
    border-radius: 8px;
    object-fit: cover;
}

.carousel-img.active {
    display: block;
    position: relative;
    z-index: -2;
}

.carousel-btn {
    background: #2c3e50;
    color: white;
    border: none;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next{
    right: 10px;
}

.carousel-btn:hover {
    background: #1a5ec8;
}


@media (max-width: 600px) {
    section {
        margin: 0;
        padding: 10px;
    }

    .carousel-btn {
        display:block;
        width: 150px;
        border-radius: 0px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .carousel-btn.prev {
        position: relative;
        top: 167px;
        left: 170px;
        border-radius: 0 0 0 8px;
    }

    .carousel-btn.next {
        position: relative;
        top: 167px;
        right: 170px;
        border-radius: 0 0 8px 0;
    }
}