/* Roboto Font Import */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;600&display=swap');

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: 
        "header"
        "main"
        "footer";
}

/* Scrollbalken ausblenden */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

/* Header und Slider */
.header {
    position: relative;
    width: 100vw;
    overflow: hidden;
    grid-area: header;
}

/* Slider */
.slider {
    position: relative;
    margin-top: 70px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2.0s ease-in-out;
    margin: 0;
}

.slide:first-child {
    position: relative;
    opacity: 1;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 0;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: white;
    z-index: 1000;
    box-sizing: border-box;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.logo a:hover {
    color: inherit;
}

.logo h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 2.8rem;
    color: black;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin: 0;
}

.logo h1 a {
    color: inherit;
    text-decoration: none;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    width: 44px;
    height: 36px;
    justify-content: space-between;
    padding: 4px 0;
    box-sizing: border-box;
    position: relative;
}

.hamburger.active {
    width: 44px;
    height: 36px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    width: 36px;
    height: 2.2px;
    background: black;
    transition: 0.3s;
    transform-origin: center;
    display: block;
}

.hamburger.active span {
    display: none;
}

.hamburger::after {
    content: "";
    display: none;
}

.hamburger.active::after {
    content: "";
    display: block;
    background-image: url('images/close-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
}

.nav-menu.active {
    right: 0;
}

.nav-menu a {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: black;
    text-decoration: none;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Hauptinhalt */
.main-content {
    font-family: 'Roboto', sans-serif;
    background: white;
    grid-area: main;
}

#buttons {
    padding: 80px 20px 80px 20px !important;
}

#über-mich {
    padding: 0px 20px 100px 20px !important;
}

/* Desktop-only: mehr Abstand zum Footer unterhalb des Textkastens (~50% mehr)
   Überschreibt Inline-Style auf Desktop mit !important */
@media screen and (min-width: 769px) {
    #über-mich {
        padding-bottom: 22.5vh !important;
    }
}

.main-content h2 {
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.main-content p {
    font-weight: 300;
    font-size: 1.1rem;
    color: black;
    margin-bottom: 0.5rem;
}

/* Project Buttons */
.project-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
}

.project-btn {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    color: black;
    background: white;
    border: none;
    border-radius: 0;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-align: center;
}

.project-btn:hover {
    background: white;
    color: rgba(0, 0, 0, 0.7);
    border-color: rgba(0, 0, 0, 0.7);
}

/* Services Section */
.services-container {
    display: block;
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-height: 70vh;
}

.services-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 65vw;
    z-index: 1;
}

.services-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    background: #ffffff;
}

.services-text {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 45vh;
    background: white;
    padding: 18px 35px 35px 35px;
    z-index: 2;
    width: 43vw;
    transform: none;
    margin-right: 0;
}

.services-text blockquote {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 3.0rem;
    color: black;
    font-style: normal;
    margin: 0 0 0.5rem 0;
    padding: 0;
    border: none;
    line-height: 1.3;
}

.services-text .quote-author {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    line-height: 1.2;
    text-align: right;
}

.services-text p {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.services-text ul {
    list-style: none;
    padding: 0;
}

.services-text li {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: black;
    margin-bottom: 0.8rem;
    padding-left: 0;
    position: relative;
}

/* Contact Section */
.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info p {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: black;
    margin: 0;
    line-height: 1.4;
}

.contact-info .company-name {
    font-weight: 300;
    text-transform: uppercase;
}

/* Text Links Styling */
.contact-info a,
.mobile-contact a,
.privacy-section a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover,
.contact-info a:active,
.mobile-contact a:hover,
.mobile-contact a:active,
.privacy-section a:hover,
.privacy-section a:active {
    color: rgba(0, 0, 0, 0.5);
}

.mobile-contact {
    display: none;
}

/* Footer */
.footer {
    background: white;
    text-align: center;
    padding: 60px 20px 30px 20px;
    grid-area: footer;
}

/* Mobile Anpassungen */
@media screen and (max-width: 768px) {
    .navigation {
        height: 60px;
    }
    
    .slider {
        width: 100%;
        margin-top: 60px;
    }
    
    .slide {
        width: 100%;
    }
    
    .slide img {
        width: 100%;
        height: auto;
    }
    
    .nav-container {
        padding: 0 18px;
    }
    
    .logo h1 {
        font-size: 1.4rem;
        letter-spacing: 0.04em;
    }
    
    .hamburger span {
        width: 24px;
        height: 1.4px;
    }
    
    .hamburger {
        width: 26px;
        height: 23px;
    }
    
    .hamburger.active {
        width: 26px;
        height: 23px;
    }
    
    .hamburger.active::after {
        width: 22px;
        height: 22px;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
    }
    
    /* Mobile Project Buttons */
    #buttons {
        padding: 60px 20px 60px 20px !important;
    }
    
    .project-buttons {
        flex-direction: row;
        gap: 0;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    .project-btn {
        font-size: 1.2rem;
        padding: 5px 10px;
        flex: 1;
        min-width: 100px;
        max-width: 48%;
    }
    
    /* Mobile Footer */
    .footer {
        padding: 40px 20px 20px 20px;
        margin-top: 100px;
    }
    
    .desktop-contact {
        display: none;
    }
    
    .mobile-contact {
        display: block;
    }
    
    .mobile-contact p {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 0.3rem;
        text-align: left;
    }
    
    .mobile-contact .company-name {
        font-weight: 300;
        text-transform: uppercase;
        margin-bottom: 0.4rem;
    }
    
    /* Mobile About Me */
    #über-mich {
        padding: 0px 20px 0px 20px !important;
        position: relative;
        min-height: 100vh;
    }
    
    .services-container {
        display: block;
        padding: 0;
        position: relative;
        height: 100%;
    }
    
    .services-image {
        width: 100%;
        margin-left: 0;
        position: relative;
        z-index: 1;
    }
    
    .services-text {
        position: absolute;
        top: 36%;
        right: 0px;
        width: 83%;
        transform: none;
        margin: 0;
        padding: 15px 30px 30px 30px;
        z-index: 2;
    }
    
    .services-text blockquote {
        font-size: 1.8rem;
    }
}

/* Styles for additional pages (without slider) */
.page-header {
    height: auto;
    min-height: 120px;
    background: white;
}

.page-title {
    padding: 80px 20px 40px 20px;
    text-align: left;
    background: white;
    max-width: 800px;
    margin: 0 auto;
}

.page-title h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 2.5rem;
    color: black;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.page-content {
    min-height: 60vh;
    padding: 40px 20px 60px 20px;
}

/* Active navigation link */
.nav-menu a.active {
    color: black;
    font-weight: 400;
}

/* Privacy Page Styling */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.privacy-section {
    margin-bottom: 2rem;
}

.privacy-section h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: black;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.privacy-section h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: black;
    margin-bottom: 0.8rem;
    margin-top: 2rem;
}

.privacy-section p {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: black;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.privacy-section ul {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: black;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 0;
    list-style: none;
}

.privacy-section li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.privacy-section li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: black;
}

.privacy-section address {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: black;
    line-height: 1.6;
    font-style: normal;
    margin: 1rem 0;
}

/* Section Title */
.section-title {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 300 !important;
    font-size: 1.8rem !important;
    color: black !important;
    letter-spacing: 0.07em !important;
    line-height: 1 !important;
    margin-bottom: 12px !important;
    text-align: left !important;
}

/* Image Gallery */
.image-gallery.desktop-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    max-width: 100%;
}

/* Mobile Gallery - Hidden on Desktop */
.mobile-gallery {
    display: none;
}

.mobile-image {
    width: 100%;
    margin-bottom: 15px;
}

.mobile-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Mobile Portrait Images Side by Side (Legacy) */
.mobile-portrait-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.mobile-portrait {
    flex: 1;
}

.mobile-portrait img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Mobile Side-by-Side (Flexible for any format) */
.mobile-side-by-side {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.mobile-half {
    flex: 1;
}

.mobile-half img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Mobile Single Half - for one image taking only half width */
.mobile-single-half {
    width: calc(50% - 7.5px);
    margin-bottom: 15px;
}

.mobile-single-half img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    /* Hide Desktop Gallery on Mobile */
    .desktop-gallery {
        display: none !important;
    }
    
    /* Show Mobile Gallery on Mobile */
    .mobile-gallery {
        display: block;
    }
}

.main-image {
    grid-row: 1;
    grid-column: 1 / 3;
    display: flex;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.side-images {
    grid-row: 1;
    grid-column: 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-image {
    flex: 1;
    display: flex;
}

.side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bottom-images {
    grid-row: 2;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bottom-thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Natural height layout - side image keeps its natural proportions */
.natural-height .side-images {
    align-items: flex-start;
}

.natural-height .side-image {
    flex: none;
}

.natural-height .side-image img {
    height: auto;
}

@media screen and (max-width: 768px) {
    .page-title {
        padding: 60px 20px 30px 20px;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .page-content {
        padding: 30px 20px 40px 20px;
    }
    
    /* Mobile Section Titles */
    .section-title {
        font-size: 1.4rem !important;
    }
    
    /* Mobile Impressum H2 */
    .privacy-section h2 {
        font-size: 1.4rem !important;
    }
    
    /* Mobile Image Gallery */
    .content-section {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }
    
    .main-image {
        grid-row: 1;
        grid-column: 1;
    }
    
    .side-images {
        grid-row: 2;
        grid-column: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .bottom-images {
        grid-row: 3;
        grid-column: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    /* Querformatige Bilder über ganze Breite */
    .landscape-image {
        grid-column: 1 / -1;
    }
    
    /* Hochformatige Bilder halbe Breite */
    .portrait-image {
        grid-column: span 1;
    }
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}

.animate-fade-up {
    animation-name: fadeInUp;
}

.animate-fade-left {
    animation-name: fadeInLeft;
}

.animate-fade-right {
    animation-name: fadeInRight;
}

.animate-fade-in {
    animation-name: fadeIn;
}

/* Animationen für Kontakt-, Impressum- und Datenschutz-Seiten */
.contact-services-image,
.impressum-services-image {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out 0.3s forwards;
}

.contact-services-text,
.impressum-services-text {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out 0.5s forwards;
}

/* Animation Delays */
.animation-delay-1 {
    animation-delay: 0.1s;
}

.animation-delay-2 {
    animation-delay: 0.2s;
}

.animation-delay-3 {
    animation-delay: 0.3s;
}

.animation-delay-4 {
    animation-delay: 0.4s;
}

.animation-delay-5 {
    animation-delay: 0.5s;
}

/* Specific element animations */
.slider {
    animation: fadeIn 1.2s ease-out;
}

.services-image {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out 0.3s forwards;
}

.services-text {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out 0.5s forwards;
}

.project-btn {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.project-btn:first-child {
    animation-delay: 0.2s;
}

.project-btn:last-child {
    animation-delay: 0.3s;
}

/* Gallery animations - abgeschwächt */
.image-gallery {
    opacity: 1;
    transition: opacity 1.0s ease-out, transform 1.0s ease-out;
}

.section-title {
    opacity: 1;
}

/* Footer animation */
.footer {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.1s forwards;
}

/* Vielseitig Page Headline */
.vielseitig-headline {
    font-size: 3.6rem;
    font-weight: 200;
    text-align: left;
    margin: 0 0 0.5rem 0;
    max-width: 100%;
    line-height: 1.2;
    color: #333;
    font-style: normal;
}

@media (max-width: 768px) {
    .vielseitig-headline {
        font-size: 3.2rem;
        margin: 0 0 0.5rem 0;
        max-width: 100%;
        font-weight: 100;
    }
}

/* Contact Page Specific Styling */
.contact-services-container {
    display: block;
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-height: 70vh;
}

.contact-services-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 65vw;
    z-index: 1;
}

.contact-services-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    background: #ffffff;
}

.contact-services-text {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 47vh;
    background: white;
    padding: 20px 10px 20px 35px;
    z-index: 2;
    width: 40vw;
    transform: none;
    margin-right: 0;
}

.contact-services-text blockquote {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 3rem;
    color: black;
    font-style: normal;
    margin: 0 0 0.5rem 0;
    padding: 0;
    border: none;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .contact-services-text blockquote {
        font-size: 2.2rem;
    }
    
    .contact-services-container {
        display: block;
        padding: 0;
        position: relative;
        height: 100%;
    }
    
    .contact-services-image {
        width: 100%;
        margin-left: 0;
        position: relative;
        z-index: 1;
    }
    
    .contact-services-text {
        position: absolute;
        top: 35%;
        right: 0px;
        width: 80%;
        transform: none;
        margin: 0;
        padding: 15px 30px 30px 30px;
        z-index: 2;
    }
}

/* Impressum Page Specific Styling (gespiegelt zur Kontaktseite) */
.impressum-services-container {
    display: block;
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-height: 70vh;
}

.impressum-services-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 60vw;
    z-index: 1;
}

.impressum-services-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    background: #ffffff;
}

.impressum-services-text {
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 24vh;
    background: white;
    padding: 20px 35px 20px 35px;
    z-index: 2;
    width: 50vw;
    transform: none;
    margin-left: 0;
}

/* Spezielle Margin für Impressum und Datenschutz Seiten */
.main-content.impressum {
    margin-bottom: 15vh;
}

/* Footer auf Impressum- und Datenschutz-Seiten ausblenden */
.main-content.impressum ~ .footer {
    display: none;
}

.impressum-services-text blockquote {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 2.64rem;
    color: black;
    font-style: normal;
    margin: 0 0 0.5rem 0;
    padding: 0;
    line-height: 1.2;
}

/* Impressum Headlines mit font-weight 300 */
.impressum-services-text h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1.4rem;
    margin-top: 0.5em;
    margin-bottom: 0.2em;
}

.impressum-services-text h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.impressum-services-text h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    margin-top: 0.5em;
    margin-bottom: 0.25em;
}

/* Address-Elemente in Impressum - entfernt margin-top */
.impressum-services-text address {
    margin-top: 0;
    margin-bottom: 1em;
}

/* Mobile Responsive für Impressum */
@media (max-width: 768px) {
    .impressum-services-container {
        position: relative;
        min-height: auto;
        padding: 0;
    }
    
    .impressum-services-image {
        position: relative;
        width: 100%;
        right: auto;
        top: auto;
        margin-bottom: 0;
    }
    
    .impressum-services-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .impressum-services-text {
        padding: 25px;
        position: absolute;
        margin-top: 0;
        width: 90%;
        background: white;
        top: 70%;
        right: 0;
        transform: none;
        margin-left: 0;
        margin-right: 0;
        z-index: 2;
    }
    
    .impressum-services-text blockquote {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .impressum-services-text h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .impressum-services-text h3 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .impressum-services-text p,
    .impressum-services-text address {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .impressum-services-text ul {
        font-size: 0.95rem;
        margin-left: 1.2rem;
    }
    
    .impressum-services-text a {
        word-break: break-word;
    }
}