h1.mod-content-image-headline {
    filter: drop-shadow(2px 4px 6px black);
}


.container {
    display: flex;
    max-width: 1200px; 
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px; 
    height: 30em;
}

.left-panel {
    width: 250px; 
    padding: 20px 0; 
    border-right: 1px solid #eee; 
    display: flex;
    flex-direction: column;
    background-color: #f8f8f8; 
}

.nav-button {
    background-color: transparent;
    border: none;
    padding: 15px 20px;
    text-align: left;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-bottom: 5px; 
}

.nav-button:hover {
    background-color: #e0e0e0;
}

.nav-button.active {
background-color: #670461;
    color: white;
    font-weight: bold;
    width: 250px;
}

.right-panel {
    flex-grow: 1; 
    padding: 30px; 
    display: flex; 
    flex-direction: column; 
    position: relative; 
}

.content-area {
    display: none; 
    background-color: #fff; 
    padding: 0; 
}

.content-area.active {
    display: block; 
}

.title-word {
    color: #670461;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 40px;
}

@media screen and (max-width:600px){
.title-word {
    font-size: 1em;
} 
}

.content-area ul {
    list-style-type: disc; 
    margin-left: 20px;
    padding: 0;
    color: #555;
    line-height: 1.6;
}

.content-area ul li {
    margin-bottom: 8px;
}

.bottom-button {
    background-color: #670461; 
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 30px; 
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.bottom-button:hover {
    background-color: #8a2be2;
    transform: translateY(-2px); 
}

/*Mobile*/

@media screen and (max-width:600px){
.right-panel{
    padding:15px;
}
}

@media screen and (max-width:1000px){
    .container{
        flex-wrap: wrap;
    }
}
@media screen and (max-width:1000px){
    .left-panel{
        width:100%
    }
}
@media screen and (max-width:1000px){
.nav-button.active {
    width: 100%;
}
}
@media screen and (max-width:1000px){
.container {
    height: auto;
}
}

@media screen and (max-width: 600px) {
.content-area ul {
    margin-left: 0px;
}
}

@media screen and (max-width: 600px) {
.mod-content-image-banner img{
object-fit: cover;
}
}

.mod-navigation {
    background-image: linear-gradient(to bottom, #000000, #00000000);
}

@media screen and (max-width: 600px) {
    .htmlModuleWrap {
padding:0em;
    }
}