body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background-color: #33ae9a;
    color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

.section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

    .section h2 {
        margin-top: 0;
        color: #33ae9a;
    }

.video-container {
    text-align: center;
}

    .video-container iframe {
        width: 100%;
        height: 400px;
        border-radius: 8px;
    }

.dropdown {
    margin: 20px 0;
}

    .dropdown button {
        width: 100%;
        padding: 15px;
        text-align: left;
        border: none;
        outline: none;
        cursor: pointer;
        background-color: #33ae9a;
        font-size: 18px;
        color: #fff;
        border-radius: 8px;
        transition: background-color 0.3s;
    }

        .dropdown button:hover {
            background-color: #2a947d;
        }

.dropdown-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.dropdown button:after {
    content: '\25bc';
    float: right;
}

.dropdown button.active:after {
    content: '\25b2';
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1200px;
}

.lightbox img {
    border-radius: 8px;
    width: 100%;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

    .close:hover,
    .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

.qr-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

    .qr-container img {
        width: 150px;
        height: 150px;
        border-radius: 8px;
        margin-right: 20px;
    }

    .qr-container p {
        max-width: 200px;
    }

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
}

.slides {
    display: none;
}

.mySlides {
    display: none;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

    .prev:hover, .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

.fullscreen-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #33ae9a;
    border: none;
    color: white;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
}

    .fullscreen-btn:hover {
        background-color: #2a947d;
    }

.fullscreen {
    width: 100vw !important;
    height: 100vh !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #000;
}

/* New CSS for Icebreakers dropdown */
.dropdown-content h3 {
    color: #33ae9a;
    margin-top: 10px;
    font-size: 20px;
}

.dropdown-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}
