.mission {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 150px;
}

@media (max-width: 640px) {
    .mission {
        padding: 5px 10px;
    }
}

.mission-statement {
    display: flex;
    justify-items: center;
    text-align: center;
    font-size: large;
    line-height: 1.6;
    text-wrap: balance;
    letter-spacing: 0.03em;
}

.activities {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px 50px;
}

@media (max-width: 640px) {
    .activities {
        padding: 25px 10px;
    }
}

.activity-description {
    font-size: large;
    line-height: 1.6;
    text-wrap: balance;
    letter-spacing: 0.03em;
    text-align: center;
}

.activity-card {
    background-color: rgb(255, 227, 0);
    padding: 20px;
    border-radius: 25px;
    max-width: 500px;
    transition: ease-in-out;
    transition-duration: 5ms;
}

.activity-card:hover {
    background-color: rgb(255, 214, 0);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.activity-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: 2px dashed black;
    font-weight: bold;
    font-size: larger;
}

.activity-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    padding: 15px 0 0 0;
}

.activity-carousel-wrapper {
    width: 100%;
    position: relative;
}

.activity-pagination {
    display: none;
}

@media (max-width: 768px) {
    .activity-container {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        overflow-x: scroll;
        justify-content: center;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        height: fit-content;
        padding: 5%;
        gap: 20px;
        scrollbar-width: none;  
        -ms-overflow-style: none;  
    }
    
    .activity-container::-webkit-scrollbar {
        display: none;
    }
    
    .activity-container::before {
        content: '';
        padding-left: 10%;
    }

    .activity-container::after {
        content: '';
        padding-right: 10%;
    }

    .activity-card {
        background-color: rgb(255, 214, 0);
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        flex-shrink: 0;
        scroll-snap-align: center;
        width: 80%;
        margin: 0;
    }
    
    .activity-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
        padding: 10px 0;
    }
    
    .pagination-dot {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: #ccc;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .pagination-dot.active {
        background-color: rgb(255, 214, 0);
        width: 24px;
        height: 18px;
        border-radius: 40%;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
}