body {
    background-color: white;
    font-family: Arial, sans-serif;
    color: #333333;
    margin: 8px;
}

.main-header h1,
.department-details h2,
.department-details h3,
.department-details h4 {
    font-family: 'Times New Roman', serif;
}


/* Container für den Hauptinhalt */
.container {
    max-width: 750px;
    margin: 0 auto;
    background-color: white;
    box-sizing: border-box;
}

div {
    margin-bottom: 8px;
    margin-top: 8px;
}

/* Links */
a {
    color: #FF7F50;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: #FF6347;
    text-decoration: underline;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}


/* Header */
.main-header {
    display: flex;
    align-items: center;
    background-color: #f4f4f4;
    background-image: linear-gradient(to right, white, #a1b1c7);
    border: 2px solid #333333;
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 20px;
}

.header-logo {
    width: 149px;
    height: 149px;
    margin-right: 20px;
}

.main-header h1 {
    font-size: 24pt;
    margin: 0 0 5px 0;
    white-space: nowrap;
}


.department-icon img {
    max-width: 100%;
    height: auto;
}


/* Abteilungen */
.department-section {
    display: flex;
    align-items: center;
    background-color: #f4f4f4;
    border-radius: 20px;
    border: 2px solid #333333;
    padding: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}



.department-icon {
    width: 150px;
    flex-shrink: 0;
    text-align: center;
    padding-right: 10px;
}

.department-details {
    flex-grow: 1;
    padding-left: 20px;
}

.department-details h2 {
    font-size: 24pt;
    margin: 5px 0 10px 0;

}

.department-details h3 {
    color: #FF7F50;
    font-size: 20pt;
    margin: 5px 0 10px 0;
}

.department-details h4 {
    font-size: 12pt;
    margin: 5px 0 10px 0;
}

.department-details p {
    font-size: 12pt;
    margin: 2px 0 2px 0;
}


.social-link {
    width: 150px;
    flex-shrink: 0;
    text-align: center;
    padding-left: 10px;
}


/* Footer-Bereich */
.site-footer {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    font-size: 10pt;
    color: black;
    border-radius: 20px;
    border: 2px solid #333333;
}


.site-footer p {
    margin: 5px 0;
    line-height: 1.4;
}

.main-header,
.site-footer {
    background-image: linear-gradient(to right, white, #FF7F50);
}

/* Mobile Anpassungen */
@media (max-width: 600px) {
    .main-header,
    .department-section,
    .site-footer {
        flex-direction: column;
        text-align: center;
    }


    .header-logo {
        margin-right: 0; /* Remove horizontal margin */
        margin-bottom: 10px; /* Add space below the logo */
    }

    .main-header h1 {
        white-space: normal; /* Allow the title to wrap */
    }


    .department-icon {
        padding-right: 0;
        padding-bottom: 10px; /* Add some space below the icon */
    }

    .department-details {
        padding-left: 0;
        text-align: left;
    }
}