h1.mod-content-image-headline {
    filter: drop-shadow(2px 4px 6px black);
}


.container {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px; 
    height: 40em;
}

.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: #8a2be2; 
    color: white;
    font-weight: bold;
}

.right-panel {
    width: 5em;
    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;
    margin-bottom: 15px;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 40px;
}

.content-area ul {
    list-style-type: disc; 
    margin-left: 20px;
    padding: 0;
    color: #555;
    line-height: 1.6;
}

@media screen and (max-width:1200px){
.content-area ul {
    margin-left: 0;
}
}

.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: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:1000px){
.title-word {
    font-size: 1em;
}
}


@media screen and (max-width:800px){
p.p {
    text-align: center;
}
}