
        body {
            font-family: 'Palatino', 'Garamond', serif;
            line-height: 1.6;
            color: #333;
            background-color: #f4f1e9;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            
        }
        .container {
            max-width: 800px;
            margin: 0 auto;
            background-color: rgba(255, 255, 255, 0.9);
            padding: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            flex: 1 0 auto;
            display: flex;
            flex-direction: column;
            min-height: calc(100vh - 200px); 
            margin-bottom: 20px;
        }
        .container2 {
        max-width: 1100px;
        margin: 0 auto;
        background-color: rgba(255, 255, 255, 0.9);
        padding: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        flex: 1;
    }
        .navigation {
            text-align: center;
            margin-bottom: 20px;
            font-size: 0.9em;
        }
        .navigation a {
            color: #3571a8;
            text-decoration: none;
            margin: 0 10px;
        }
        .navigation a:hover {
            text-decoration: underline;
        }
        h1, h2, h3 {
            text-align: center;
            color: #2F4F4F;
        }
        h1 { font-size: 2.5em; margin-bottom: 10px; }
        h2 { font-size: 1.8em; margin-bottom: 20px; }
        h3 { font-size: 1.5em; margin-bottom: 20px; }
        [role="main"] {
            text-align: justify;
            font-size: 1.1em;
            flex: 1;
        }
        p { margin-bottom: 15px; }
        .footnote {
            color: #0e41e9;
            cursor: pointer;
            position: relative;
        }
        .footnote-content {
            display: none;
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background-color: #c2dfec;
            border: 1px solid #333;
            padding: 10px;
            border-radius: 5px;
            font-size: 0.9em;
            width: 250px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            z-index: 1;
            color: #333
        }
        .footnote:hover .footnote-content {
            display: block;
        }
        .main-nav, .main-footer {
            background-color: #2F4F4F;
            color: #fff;
            padding: 10px 0;
            margin-bottom: 20px;
        }
        .main-nav ul, .main-footer ul {
            list-style-type: none;
            padding: 0;
            margin-top: 20px;
            display: flex;
            justify-content: center;
        }
        .main-nav ul li, .main-footer ul li {
            margin: 0 15px;
        }
        .main-nav ul li a, .main-footer ul li a {
            color: #fff;
            text-decoration: none;
        }
        .search-bar {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.search-bar input {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
}

.search-bar button {
    padding: 5px 10px;
    background-color: #2f1cd6;
    color: white;
    border: 1px solid #2f1cd6;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
} #search-results {
            margin-top: 20px;
        }

.search-bar button:hover {
    background-color: #e0dcf5;
}

        .main-footer {
            background-color: #2F4F4F;
            color: #fff;
            padding: 10px 0;
            margin-top: auto;
            width: 100%;
            text-align: center;
        }
        .main-footer p {
            margin-top: 20px;
        }
        
        .table-of-contents {
            text-align: left;
          }
          
          .table-of-contents ul {
            list-style-type: none;
            padding: 0;
          }
          
          .table-of-contents li {
            margin-bottom: 10px;
          }
          
          .table-of-contents a {
            text-decoration: none;
            color: #333; /* oder eine andere Farbe Ihrer Wahl */
          }
          
          .table-of-contents a:hover {
            text-decoration: underline;
          }
          .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .grid-item {
            background-color: #fff;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
            display: block;
            text-decoration: none;
            color: inherit;
        }
        
        .grid-item:hover {
            transform: translateY(-5px);
        }
        
        .grid-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .grid-item h2 {
            margin: 1rem 0;
        }
        
        .grid-item p {
            padding: 0 1rem 1rem;
        }
        @media (max-width: 768px) {
            header nav ul {
                flex-direction: column;
                align-items: center;
            }
        
            header nav ul li {
                margin: 10px 0;
            }
        
            .search-bar input {
                width: 200px;
            }
        
            .grid-container {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
        }
        .subtitle {
            text-align: center;
        }   
        #page-container {
            position: relative;
            background-image: url('Palestina3.jpg');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            flex-direction: column;

          }
          
          #content-wrap {
            flex: 1;
          }
          
          .main-footer {
            width: 100%;
          }
    
        .news-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 2rem;
        }
        .news-item {
            background-color: #fff;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            display: flex;
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s ease;
        }
        .news-item:hover {
            transform: translateY(-5px);
        }
        .news-item img {
            width: 200px;
            height: 200px;
            object-fit: cover;
        }
        .news-content {
            padding: 1rem;
            flex: 1;
        }
        .news-content h3 {
            margin-top: 0;
        }
        .links-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 2rem;
        }
        .link-item {
            background-color: #fff;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            display: flex;
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s ease;
        }
        .link-item:hover {
            transform: translateY(-5px);
        }
        .link-item img {
            width: 200px;
            height: 200px;
            object-fit: cover;
        }
        .link-content {
            padding: 1rem;
            flex: 1;
        }
        .link-content h3 {
            margin-top: 0;
        }
        .content-box {
            background-color: #fff;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            margin-top: 2rem;
        }
        .signature {
            white-space: pre-line;
            line-height: 1.4;
        }
        .citation-recommendation {
            margin-top: 2rem;
            padding: 1rem;
            background-color: #f4f1e9;
            border: 1px solid #2F4F4F;
            border-radius: 5px;
            text-align: center;
        }
        
        .citation-recommendation h3 {
            margin-top: 0;
            color: #2F4F4F;
            margin-bottom: 0.5rem;
        }
        
        .citation-text {
            font-family: 'Palatino', 'Garamond', serif;
            font-size: 0.7em;
            background-color: #fff;
            padding: 0.5rem;
            border: 1px solid #ccc;
            border-radius: 3px;
        }
        
        .copy-button {
            margin-top: 0.5rem;
            padding: 0.3rem 0.6rem;
            background-color: #2f1cd6;
            color: white;
            border: none;
            border-radius: 3px;
            cursor: pointer;
        }
        
        .copy-button:hover {
            background-color: #e0dcf5;
            color: #2f1cd6;
        }

        .button-container {
            text-align: center;
            margin: 30px 0;
        }
        
        .pdf-download {
            display: inline-block;
            background-color: #2F4F4F;
            color: white;
            padding: 8px 16px;
            text-decoration: none;
            border-radius: 4px;
            margin: 10px 0;
            transition: background-color 0.3s;
        }
        
        .pdf-download:hover {
            background-color: #1e3333;
            text-decoration: none;
            color: white;
        }
    
