
			/*see https://coolors.co/ff1c61-ff946a-f2efef-bca6a6-513344*/
			
	        :root {
	        /*header, logo, bg-section*/
            --hot-fuchsia: #ff1c61;
            
            /*highlights, proj. titles, serv. sp-2*/
            --tangerine-dream: #ff946a;

             /*bg team*/
            --lilac-ash: #bca6a6;           
             
             /*bg-text-about, bg-text-serv, bg-text-kont, varia text, others*/
            --white-smoke: #f2efef;
            
            /*body, hero-subtitle, varia-text*/          
            --charcoal: #535353;
            
            /*
             menue-hover, about-h2, bg-proj., team-h3, heam-memb.-h4, team-memb.-p, 
             serv.-intro-h2, price-tabl.-td, serv.-notes, kont.-h2, h3, lagepl p, footer-bg
             */
            --mauve-shadow:#513344;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
        }
        
        body {
            font-family: 'Outfit', sans-serif;
            color: var(--charcoal);
            line-height: 1.8;
            background: var(--mauve-shadow);
            font-size: 1.2rem;
            overflow-x: hidden;
        }
        
        /* Lokale Schriften */
        @font-face {
            font-family: 'Outfit';
            font-style: normal;
            font-weight: 100 900;
            font-display: swap;
            src: url('../fonts/Lilita_One,Outfit/Outfit/Outfit-VariableFont_wght.ttf') format('truetype');
        }

        @font-face {
            font-family: 'Lilita One';
            font-style: normal;
            font-weight: 400;
            font-display: swap;
            src: url('../fonts/Lilita_One,Outfit/Lilita_One/LilitaOne-Regular.ttf') format('truetype');
        }

        
        
        /* =====================
           HEADER MIT HAMBURGER
           ===================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: var(--hot-fuchsia);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 3rem;
        }
        
        
        /* Hamburger Button */
        .menu-toggle {
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding: 10px;
            z-index: 1002;
        }
        
        .menu-toggle span {
            display: block;
            width: 32px;
            height: 3px;
            background: var(--white-smoke);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        
        .menu-label {
            color: var(--white-smoke);
            font-size: 1.1rem;
            font-weight: 600;
            margin-left: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .menu-toggle-wrapper {
            display: flex;
            align-items: center;
            z-index: 1002;
            position: relative;
        }

        
        /* Fullscreen Menu Overlay */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--hot-fuchsia);
            z-index: 1001;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }
        
        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .menu-nav {
            text-align: center;
            list-style: none;
        }
        
        .menu-nav li {
            margin: 1.5rem 0;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.4s ease;
        }
        
        .menu-overlay.active .menu-nav li {
            opacity: 1;
            transform: translateY(0);
        }
        
        .menu-overlay.active .menu-nav li:nth-child(1) { transition-delay: 0.1s; }
        .menu-overlay.active .menu-nav li:nth-child(2) { transition-delay: 0.15s; }
        .menu-overlay.active .menu-nav li:nth-child(3) { transition-delay: 0.2s; }
        .menu-overlay.active .menu-nav li:nth-child(4) { transition-delay: 0.25s; }
        .menu-overlay.active .menu-nav li:nth-child(5) { transition-delay: 0.3s; }
        
        .menu-nav a {
            color: var(--white-smoke);
            text-decoration: none;
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            transition: opacity 0.3s ease;
            display: inline-block;
        }
        
        .menu-nav a:hover {
            /*opacity: 0.6;*/
            color: var(--mauve-shadow);
        }
 
        /* ===================
           SECTION 1: Hero + Über uns (Hintergrundbild grau)
           =================== */
          
        #hero-about {
			/*
            min-height: 100vh;
            width: 100%;
            position: relative;
            padding: 160px 3rem 6rem;
            */
            position: relative;
            padding: 6rem 3rem;
            background: url('../images/hero-grau.webp') top center / 100% auto no-repeat;
        }
        
        #hero-about::before {
            content: '';
            position: absolute;
            inset: 0;
            /*
            background: rgba(255, 255, 255, 0.35); 
            */         
            z-index: 0;
        }
        
        .hero-about-inner {
            position: relative;
            z-index: 1;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .hero-content {
            text-align: center;
            padding: 4rem 0 5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.3s forwards;
        }
        
        .hero-logo {
			display:flex;
			/*
			border:3px solid red;
			*/
		}
		
		.logo-icon {
			width: 30%;
			padding-right: 1em;
			/*
			border:2px solid blue
			*/
		}
		
		.logo-icon img {
			max-width:100% !important;
			display:block;
			/*
			border: 5px solid orange;
			*/
		}
        
        .hero-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(6rem, 15vw, 9rem);
            font-weight: 700;
            color: var(--hot-fuchsia);
            margin-bottom: 1.5rem;
            letter-spacing: 0;
        }
        
        .hero-subtitle {
            font-size: clamp(2rem, 2vw, 6rem);
            color: var(--charcoal);
            font-weight: 500;
        }
        
        /* About Content Box */
        .about-box {
            background: var(--white-smoke);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 4rem;
            margin-top: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.6s forwards;
        }
        
        .section-title {
            font-family: 'Outfit', sans-serif;
            font-family: 'Lilita One', sans-serif;
            display: inline-block;
            background: var(--hot-fuchsia);
            color: var(--white-smoke);
            margin: 0 0 2.5rem 0;
            padding: 0 .5rem;
            font-size: 2.5rem;
            font-weight: 400;
            letter-spacing: 3px;
            line-height: 130%;
        }
        
        .about-box h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 3rem;
            color: var(--mauve-shadow);
            margin-bottom: 2rem;
            font-weight: 700;
        }
        
        .about-box p {
            margin-bottom: 1.5rem;
            color: var(--charcoal);
            font-size: 1.5rem;
        }
        
        .about-box a {
            color: var(--charcoal);
            text-decoration: none;
        }
        
        .about-box a:hover {
			color: var(--tangerine-dream);
            text-decoration: none;
        }
        
        .hint-box {
            background: var(--orange);
            color: var(--white-smoke);
            padding: 1.2rem 1.5rem;
            border-radius: 6px;
            margin: 2rem 0;
        }
        
        
        /* ===================
           SECTION 2: Projekte (mauve-shadow)
           =================== */
           
        #projekte {
            background: var(--mauve-shadow);
            padding: 6rem 3rem;
        }
        
        .projekte-inner {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .projekt-list {
            list-style: none;
        }
        
        .projekt-item {
            padding: 1.3rem 0;
            border-bottom: 1px solid #f2efef;;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 1.5rem;
            align-items: baseline;
            opacity: 0;
            transform: translateY(15px);
        }
        
        .projekt-item.visible {
            animation: fadeInUp 0.5s ease forwards;
        }
        
        .projekt-item:last-child {
            border-bottom: none;
        }
        
        .projekt-name {
            font-weight: 600;
            font-size: 1.8rem;   
			color: var(--tangerine-dream);                  
        }
        
        .projekt-name a {
            text-decoration: none;
            transition: color 0.2s ease;
			color: var(--tangerine-dream);
        }
        
        .projekt-name a:hover {
            color: var(--white-smoke);
        }
        
        .projekt-desc {
            font-size: 1.5rem;
            margin-top: 0.3rem;
            color: var(--white-smoke);
        }
        
        .projekt-link {
            font-size: 1.5rem;
            text-decoration: none;
            white-space: nowrap;
            font-weight: 500;
            color: var(--white-smoke);         
        }
        
        .projekt-link:hover {
            text-decoration: none;
            color: var(--tangerine-dream); 
        }   
        
             
        /* ===================
           SECTION 3: Team (mittelrosa)
           =================== */
        #team {
            background: var(--powder-blush);
            background: #f1bdb6; /*(powder-blush);*/
            background-color:#d9b6b1;
            background-color:#cfb8b5;
            background-color:#bca6a6;
            
            padding: 6rem 3rem;
        }
        
        .team-inner {
            max-width: 1000px;
            margin: 0 auto;
        }
                
        
        .team {
            margin-top: 3rem;
        }
        
        .team h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            color: var(--mauve-shadow);
            margin-bottom: 2rem;
            font-weight: 700;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .team-member h4 {
            font-weight: 700;
            color: var(--mauve-shadow);   
            margin-bottom: 0.3rem;
            font-size: 1.8rem;
        }
        
        .team-member p {
            font-size: 1.5rem;
            color: var(--mauve-shadow);
            margin-bottom: 0.4rem;
        }
        
        .team-member a {
            color: var(--magenta);
            text-decoration: none;
        }
        
        .team-member a:hover {
            text-decoration: underline;
        }
        

        
        /* ===================
           SECTION 4: Service 
           =================== */
        #service {
            background: var(--white-smoke);           
            padding: 6rem 3rem;
        }
        
        .service-inner {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .service-intro h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 3rem;
            color: var(--mauve-shadow);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        
        .price-table {
            width: 100%;
            margin: 2.5rem 0;
            border-collapse: collapse;
        }
        
        .price-table tr {
            border-bottom: 1px solid var(--charcoal);
        }
        
        .price-table td {
            padding: 1rem 0;
            font-size: 1.5rem;
        }
        
        .price-table td:first-child {
            color: var(--mauve-shadow);
            font-weight: 500;
        }
        
        .price-table td:last-child {
            text-align: right;
            background: var(--powder-blush);
            background: var(--tangerine-dream);
            color: var(--white-smoke);
            color: var(--mauve-shadow);
            padding: 1rem 1.5rem;
            font-weight: 500;
        }
        
        .service-notes {
            font-size: 1rem;
            color: var(--mauve-shadow);
            margin-top: 2rem;
        }
        
        .service-notes p {
            margin-bottom: 0.5rem;
        }
        
        .service-notes a {
            color: var(--charcoal);
            text-decoration:none;
        }
        
         .service-notes a:hover {
            color: var(--tangerine-dream);
        }   
            
        
        /* ===================
           SECTION 5: Kontakt (Hintergrundbild puder)
           =================== */
        #kontakt {
            background: url('../images/hero-grau.webp') top center / 100% auto no-repeat;
            position: relative;
            padding: 6rem 3rem;
        }
        
        #kontakt::before {
            content: '';
            position: absolute;
            inset: 0;
            /*
            background: rgba(255, 255, 255, 0.3);
            */
            z-index: 0;
        }
        
        .kontakt-inner {
            position: relative;
            z-index: 1;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .kontakt-box {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 3.5rem;
        }
        
        .kontakt-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }
        
        .kontakt-box h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 3rem;
            color: var(--mauve-shadow);
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
         .kontakt-content h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.6rem;
            color: var(--mauve-shadow);
            margin-top: 2rem;
            font-weight: 700;
        }
        
        .kontakt-box p {
            margin-bottom: 0.5rem;
            color: var(--charcoal);
            font-size: 1.5rem;
        }
        
        .kontakt-box a {
            color: var(--magenta);
            text-decoration: none;
        }
        
        .kontakt-box a:hover {
			text-decoration:none;
            color: var(--tangerine-dream);
        }

        
        .lageplan p {
            font-size: 1.5rem;
            margin-top: 0.6rem;
            color: var(--mauve-shadow);
        }
        
        
        /* ===================
           Footer (mauve-shadow)
           =================== */
        .footer {
            background: var(--mauve-shadow);
            color: var(--white-smoke);
            padding: 1.2rem 2rem;
            text-align: center;
            font-size: 1.3rem;
        }
        
        .footer-black a {
            color: var(--rosa-accent);
        }
        
        /* Unsichtbare Scroll-Anker direkt vor den Section-Titeln */
        .scroll-anchor {
            display: block;
            height: 0;
            visibility: hidden;
            scroll-margin-top: 82px; /* 80px Header + 2px */
        }


        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* =====================
           MOBILE: Tablets & grosse Phones (bis 1024px, inkl. iPad Portrait)
           ===================== */
        @media (max-width: 1024px) {

            .scroll-anchor {
                scroll-margin-top: 66px; /* 64px Header + 2px */
            }

            body {
                font-size: 1.05rem;
            }

            /* Header */
            .header {
                height: 64px;
                padding: 0 1.5rem;
            }

            .menu-label {
                font-size: 1rem;
                letter-spacing: 1.5px;
            }

            /* Hero + Über uns */
            #hero-about {
                padding: 5rem 0 0;
            }

            .hero-content {
                padding: 3rem 1.5rem 3rem;
            }

            .hero-logo {
                display: flex;
                align-items: center;
                flex-direction: row;
                gap: 0.8rem;
            }

            .logo-icon {
                width: 22%;
                padding-right: 0;
                flex-shrink: 0;
            }

            .hero-title {
                font-size: clamp(3.5rem, 13vw, 5.5rem);
                margin-bottom: 0;
            }

            /* About Box – volle Breite */
            .about-box {
                padding: 2rem 1.5rem;
                border-radius: 0;
                margin-top: 0;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }

            .about-box h2 {
                font-size: 2rem;
                margin-bottom: 1.2rem;
            }

            .about-box p {
                font-size: 1.15rem;
                margin-bottom: 1rem;
            }

            /* Projekte */
            #projekte {
                padding: 4rem 1.5rem;
            }

            .projekt-item {
                grid-template-columns: 1fr;
                gap: 0.5rem;
                padding: 1rem 0;
            }

            .projekt-name {
                font-size: 1.35rem;
            }

            .projekt-desc {
                font-size: 1.1rem;
            }

            .projekt-link {
                font-size: 1.1rem;
                justify-self: start;
            }

            /* Team */
            #team {
                padding: 4rem 1.5rem;
            }

            .team-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }

            .team-member h4 {
                font-size: 1.35rem;
            }

            .team-member p {
                font-size: 1.1rem;
            }

            /* Service */
            #service {
                padding: 4rem 1.5rem;
            }

            .service-intro h2 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .price-table td {
                font-size: 1.15rem;
                padding: 0.7rem 0;
            }

            .price-table td:last-child {
                padding: 0.7rem 1rem;
            }

            /* Kontakt – volle Breite, Bild oben sichtbar (Bildhöhe ≈ 75vw bei 4:3) */
            #kontakt {
                padding: 45vw 0 0;
            }

            .kontakt-box {
                padding: 2rem 1.5rem;
                border-radius: 0;
                background: var(--white-smoke);
            }

            .kontakt-box h2 {
                font-size: 2rem;
                margin-bottom: 0.8rem;
            }

            .kontakt-box p {
                font-size: 1.15rem;
            }

            .kontakt-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            /* Footer */
            .footer {
                font-size: 1.05rem;
                padding: 1rem 1.5rem;
            }
        }

        /* =====================
           MOBILE: Kleine Phones – iPhone 13 Mini etc. (bis 480px)
           ===================== */
        @media (max-width: 480px) {

            .scroll-anchor {
                scroll-margin-top: 58px; /* 56px Header + 2px */
            }

            body {
                font-size: 1rem;
                line-height: 1.7;
            }

            /* Header */
            .header {
                height: 56px;
                padding: 0 1rem;
            }

            .menu-label {
                font-size: 0.9rem;
                letter-spacing: 1px;
                margin-left: 0.5rem;
            }

            .menu-toggle span {
                width: 26px;
                height: 2.5px;
            }

            .menu-toggle {
                gap: 5px;
                padding: 8px;
            }

            /* Menü-Overlay */
            .menu-nav a {
                font-size: clamp(1.8rem, 7vw, 2.5rem);
                letter-spacing: 2px;
            }

            .menu-nav li {
                margin: 1rem 0;
            }

            /* Hero + Über uns */
            #hero-about {
                padding: 4rem 0 0;
            }

            .hero-content {
                padding: 2.5rem 1rem 2rem;
            }

            .hero-logo {
                flex-direction: row;
                align-items: center;
                gap: 0.6rem;
                padding: 0 0.2rem;
            }

            .logo-icon {
                width: 22%;
                padding-right: 0;
                flex-shrink: 0;
            }

            .hero-title {
                font-size: clamp(3.2rem, 16vw, 4.5rem);
                margin-bottom: 0;
            }

            /* About Box – volle Breite */
            .section-title {
                font-size: 1.6rem;
                letter-spacing: 2px;
                margin-bottom: 1.2rem;
                padding: 0.1rem 0.4rem;
            }

            .about-box {
                padding: 1.5rem 1.2rem;
                margin-top: 0;
                border-radius: 0;
            }

            .about-box h2 {
                font-size: 1.5rem;
                margin-bottom: 0.8rem;
            }

            .about-box p {
                font-size: 1rem;
                margin-bottom: 0.8rem;
                line-height: 1.65;
            }

            /* Projekte */
            #projekte {
                margin-top:0;
                padding: 3rem 1rem;
            }

            .projekt-item {
                grid-template-columns: 1fr;
                gap: 0.3rem;
                padding: 0.8rem 0;
            }

            .projekt-name {
                font-size: 1.1rem;
            }

            .projekt-desc {
                font-size: 0.95rem;
                margin-top: 0.15rem;
            }

            .projekt-link {
                font-size: 0.95rem;
            }

            /* Team */
            #team {
                padding: 3rem 1rem;
            }

            .team-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }

            .team-member h4 {
                font-size: 1.15rem;
            }

            .team-member p {
                font-size: 0.95rem;
            }

            /* Service */
            #service {
                padding: 3rem 1rem;
                margin-top:0;
            }

            .service-intro h2 {
                font-size: 1.5rem;
            }

            .price-table {
                margin: 1.5rem 0;
            }

            .price-table td {
                font-size: 0.95rem;
                padding: 0.6rem 0;
            }

            .price-table td:last-child {
                padding: 0.6rem 0.6rem;
                white-space: nowrap;
            }

            .service-notes {
                font-size: 0.85rem;
            }

            /* Kontakt – volle Breite, Bild oben sichtbar (Bildhöhe ≈ 75vw bei 4:3) */
            #kontakt {
                padding: 55vw 0 0;
            }

            .kontakt-box {
                padding: 1.5rem 1.2rem;
                border-radius: 0;
                background: var(--white-smoke);
            }

            .kontakt-box h2 {
                font-size: 1.5rem;
                margin-top:0;
                margin-bottom: 0.6rem;
            }

            .kontakt-box p {
                font-size: 1rem;
                line-height: 1.65;
            }

            .kontakt-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .kontakt-content h3 {
                font-size: 1.3rem;
                margin-top: 1.5rem;
            }

            /* Footer */
            .footer {
                font-size: 0.9rem;
                padding: 1rem;
            }
        }

        /* =====================
           LANDSCAPE: Phones im Querformat
           ===================== */
        @media (max-height: 500px) and (orientation: landscape) {

            /* Navigation scrollbar machen */
            .menu-overlay {
                align-items: flex-start;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                padding: 70px 2rem 2rem;
            }

            .menu-nav li {
                margin: 0.5rem 0;
            }

            .menu-nav a {
                font-size: clamp(1.4rem, 4vw, 2rem);
                letter-spacing: 1.5px;
            }

            /* Hero kompakter */
            .hero-content {
                padding: 1.5rem 1.5rem 1rem;
            }

            .hero-logo {
                flex-direction: row;
                align-items: center;
                gap: 0.8rem;
                padding: 0;
            }

            .logo-icon {
                width: 12%;
                flex-shrink: 0;
                padding-right: 0;
            }

            .hero-title {
                font-size: clamp(2.2rem, 5vw, 3.5rem);
                margin-bottom: 0;
            }

            /* Hero: cover im Landscape, Boxen mit Abstand */
            #hero-about {
                padding: 4rem 1.5rem 2rem;
                background-size: cover;
                background-position: center;
            }

            .about-box {
                margin-top: 1rem;
                border-radius: 12px;
                padding: 2rem 1.5rem;
            }

            /* Kontakt: cover, etwas Bild oben sichtbar */
            #kontakt {
                padding: 15vh 1.5rem 2rem;
                background-size: cover;
                background-position: center;
            }

            .kontakt-box {
                border-radius: 12px;
                padding: 2rem 1.5rem;
            }
        }

        /* =====================
           LANDSCAPE: iPad im Querformat
           ===================== */
        @media (min-width: 1000px) and (max-width: 1400px) and (max-height: 900px) {

            /* Hero: Logo und Titel deutlich kompakter */
            .hero-content {
                padding: 2rem 3rem 1.5rem;
            }

            .hero-logo {
                gap: 0.8rem;
            }

            .logo-icon {
                width: 12%;
            }

            .hero-title {
                font-size: clamp(3rem, 6vw, 4.5rem);
            }

            /* About Box: weniger Abstand, kleinere Schrift */
            .about-box {
                padding: 2.5rem 3rem;
                margin-top: 1rem;
            }

            .about-box h2 {
                font-size: 2.2rem;
                margin-bottom: 1rem;
            }

            .about-box p {
                font-size: 1.2rem;
                margin-bottom: 0.8rem;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }

            /* Projekte kompakter */
            .projekt-name {
                font-size: 1.4rem;
            }

            .projekt-desc {
                font-size: 1.2rem;
            }

            .projekt-link {
                font-size: 1.2rem;
            }

            /* Service */
            .service-intro h2 {
                font-size: 2.2rem;
            }

            .price-table td {
                font-size: 1.2rem;
            }

            /* Kontakt */
            .kontakt-box h2 {
                font-size: 2.2rem;
            }

            .kontakt-box p {
                font-size: 1.2rem;
            }
        }
