body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #b3ebe5;
    min-height: 100vh;
}

header {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    background-color: rgb(41, 146, 136);;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.intro-text {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}

.intro-text a {
    color: #0056b3;
    text-decoration: none;
}

.intro-text a:hover {
    text-decoration: underline;
}

.accordion {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
}

.accordion-checkbox {
    display: none;
}

.accordion-header {
    background-color: rgb(41, 146, 136);;
    color: white;
    padding: 15px;
    cursor: pointer;
    text-align: left;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    font-size: 1.4em;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.short-description {
    font-size: 1em;
    text-align: left;
    width: 100%;
    margin: 5px 0;
}

.short-description p {
    margin: 5px 0;
}

.short-description a {
    color: #0056b3;
    text-decoration: none;
}

.short-description a:hover {
    text-decoration: underline;
}

.more-info {
    font-size: 0.9em;
    color: #fff;
    background-color: #0056b3;
    padding: 5px 10px;
    border-radius: 3px;
    margin-top: 10px;
    align-self: flex-end;
}

.more-info:hover {
    background-color: #004080;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: white;
    padding: 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.accordion-content .content-wrapper {
    opacity: 0;
    padding: 0 15px;
    transition: opacity 0.5s ease-out;
}

.accordion-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px auto;
}

.accordion-checkbox:checked + .accordion-header + .accordion-content {
    max-height: 1000px;
    padding: 15px;
}

.accordion-checkbox:checked + .accordion-header + .accordion-content .content-wrapper {
    opacity: 1;
    padding: 15px;
}

.top-image {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    height: auto; 
}


@media (max-width: 600px) {
    .accordion-header {
        font-size: 14px;
        padding: 10px;
    }

    .accordion-content .content-wrapper {
        padding: 10px;
    }
}