body.gemeindeverwaltung{

    /* Verwaltung / Administration Section Styles */

    #content .container .col-xs-12 {
        text-align: center;
    }

    #content .container .col-xs-12 .textcontent {
        text-align: center;
        color: var(--fc-primary);
        line-height: 1.6;
    }

    /* First textcontent - Heading */
    #content .container .col-xs-12:first-child .textcontent {
        font-size: var(--fs-850);
        font-weight: var(--fw-bold);
        color: var(--primary-accent);
        margin-bottom: var(--p-400);
        line-height: 1.3;
    }

    /* Second textcontent - Paragraph text */
    #content .container .col-xs-12:nth-child(2) .textcontent {
        font-size: var(--fs-600);
        line-height: 1.8;
        color: var(--fc-primary);
        max-width: 900px;
        margin: 0 auto var(--p-700);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        #content .container .col-xs-12:first-child .textcontent {
            font-size: var(--fs-800);
            margin-bottom: var(--p-300);
        }
        
        #content .container .col-xs-12:nth-child(2) .textcontent {
            font-size: var(--fs-500);
            margin-bottom: var(--p-500);
        }
    }

    @media (max-width: 480px) {
        #content .container .col-xs-12:first-child .textcontent {
            font-size: var(--fs-700);
            margin-bottom: var(--p-200);
        }
        
        #content .container .col-xs-12:nth-child(2) .textcontent {
            font-size: var(--fs-500);
            margin-bottom: var(--p-400);
            line-height: 1.6;
        }
    }

    /* Area-2: Contact Card (Bürgermeister) */
    #area-2 .verwaltung_contact {
        width: 100%;
        margin-bottom: var(--p-700);
    }

    #area-2 .verwaltung_contact .collection_container {
        background: white;
        border-radius: var(--br-primary);
        /* box-shadow: var(--shadow); */
        padding: var(--p-300);
        display: flex;
        align-items: center;
        gap: var(--p-300);
        position: relative;
        height: 145px;
    }

    #area-2 .verwaltung_contact .contact_img {
        flex-shrink: 0;
        /* height: unset; */
    }

    #area-2 .verwaltung_contact .contact_img img {
        width: 100px !important;
        height: 100px !important;
        border-radius: 50%;
        object-fit: cover;
    }

    #area-2 .verwaltung_contact .verwaltung_contact_right {
        display: flex;
        flex-direction: column;
        gap: var(--p-100);
    }

    #area-2 .verwaltung_contact .verwaltung_contact_title {
        font-size: var(--fs-500);
        color: var(--primary-accent);
        font-weight: var(--fw-regular);
    }

    #area-2 .verwaltung_contact .verwaltung_contact_position {
        font-size: 30px;
        font-weight: var(--fw-bold);
        color: var(--fc-primary);
        line-height: 1.2;
    }

    #area-2 .verwaltung_contact .verwaltung_contact_subtitle {
        font-size: var(--fs-500);
        color: var(--fc-primary);
    }

    #area-2 .verwaltung_contact .collection_container::after {
        content: '';
        width: 24px;
        height: 24px;
        background-image: url(/userdata/02_Kollektionen/arrow.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        right: var(--p-300);
        top: 50%;
        transform: translateY(-50%);
    }

    /* Area-3: Subsite Cards (Hauptverwaltung, Finanzverwaltung, Bauverwaltung) */
    #area-3 .container {
        display: flex;
        gap: var(--p-400);
        flex-wrap: wrap;
    }

    #area-3 .col_subsite {
        flex: 1;
        min-width: 280px;
    }

    #area-3 .col_subsite .collection_container {
        background: white;
        border-radius: var(--br-primary);
        /* box-shadow: var(--shadow); */
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    #area-3 .col_subsite .collection_container:hover {
        transform: translateY(-5px);
        /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); */
    }

    #area-3 .col_subsite .col-subsite_img {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

    #area-3 .col_subsite .col-subsite_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    #area-3 .col_subsite .collection_container:hover .col-subsite_img img {
        transform: scale(1.05);
    }

    #area-3 .col_subsite .col-subsite_title {
        font-size: var(--fs-700);
        font-weight: var(--fw-bold);
        color: var(--primary-accent);
        padding: var(--p-450);
        padding-right: 60px;
    }

    #area-3 .col_subsite .col-subsite_link a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        #area-3 .col_subsite {
            flex: 1 1 calc(50% - var(--p-400));
            min-width: 250px;
        }
    }

    @media (max-width: 768px) {
        #area-2 .verwaltung_contact .collection_container {
            height: auto;
            flex-direction: column;
            text-align: center;
            padding: var(--p-400);
        }
        
        #area-2 .verwaltung_contact .verwaltung_contact_right {
            align-items: center;
        }
        
        #area-2 .verwaltung_contact .collection_container::after {
            position: static;
            transform: none;
            margin: var(--p-300) auto 0;
        }
        
        #area-3 .col_subsite {
            flex: 1 1 100%;
        }
        
        #area-3 .col_subsite .col-subsite_img {
            height: 180px;
        }
    }

    @media (max-width: 480px) {
        #area-2 .verwaltung_contact .collection_container {
            padding: var(--p-300);
        }
        
        #area-2 .verwaltung_contact .contact_img img {
            width: 80px;
            height: 80px;
        }
        
        #area-2 .verwaltung_contact .verwaltung_contact_position {
            font-size: 24px;
        }
        
        #area-3 .col_subsite .col-subsite_img {
            height: 150px;
        }
        
        #area-3 .col_subsite .col-subsite_title {
            font-size: var(--fs-600);
            padding: var(--p-400);
            padding-right: 50px;
        }
        
        #area-3 .col_subsite .collection_container::after {
            width: 20px;
            height: 20px;
            right: var(--p-400);
            bottom: var(--p-400);
        }
    }
}


