   .activity-section {
        padding: 4em 0;
    }

    .activity-card {
        background: #fff;
        margin-bottom: 40px;
        padding-bottom: 30px;
        border-bottom: 1px solid #eee;
    }

    .activity-card:last-child {
        border-bottom: none;
    }

    .activity-img-wrapper {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }

    .activity-img {
        width: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
        max-height: 350px;
    }

    .activity-img:hover {
        transform: scale(1.02);
    }

    .activity-title {
        font-size: 24px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 15px;
        margin-top: 10px;
    }

    .rich-text {
        color: #555;
        line-height: 1.7;
    }

    .rich-text ul,
    .rich-text ol {
        margin-bottom: 1rem;
        padding-left: 20px;
    }

    /* Button Style */
    .btn-custom-modal {
        background-color: transparent;
        border: 2px solid #51BE78;
        color: #51BE78;
        padding: 6px 20px;
        font-weight: 600;
        border-radius: 30px;
        transition: all 0.3s;
    }

    .btn-custom-modal:hover {
        background-color: #51BE78;
        color: #fff;
    }

    /* --- LIST STYLES --- */
    .about-text ul,
    .about-text ol {
        margin-bottom: 1rem;
    }

    ul[data-list-style="disc"] {
        list-style-type: disc !important;
    }

    ul[data-list-style="circle"] {
        list-style-type: circle !important;
    }

    ul[data-list-style="square"] {
        list-style-type: square !important;
    }

    ul[data-list-style="check"] {
        list-style-type: none !important;
        padding-left: 0 !important;
    }

    ul[data-list-style="check"]>li {
        padding-left: 30px !important;
        position: relative;
        margin-bottom: 5px;
    }

    ul[data-list-style="check"]>li:before {
        content: "✓";
        position: absolute;
        left: 0;
        font-weight: bold;
        font-size: 18px;
        color: inherit;
    }

    ul[data-marker-color]>li::marker,
    ol[data-marker-color]>li::marker {
        color: var(--marker-color) !important;
    }

    ul[data-list-style="check"][data-marker-color]>li:before {
        color: var(--marker-color) !important;
    }

    ul[data-list-style="check"]>li[data-check-color]:before {
        color: attr(data-check-color color) !important;
    }