 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');
        
        :root {
            --primary: #155e8a;
            --secondary: #e74c3c;
            --accent: #f39c12;
            --light: #f8f9fa;
            --dark: #2c3e50;
            --text: #333333;
            --bg-gradient: linear-gradient(135deg, #155e8a 0%, #3498db 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: #f5f5f5;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            position: relative;
        }

        /* Header & Navigation */
        header {
            background-color: var(--primary);
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            margin-right: 1rem;
        }
        
        .logo-text {
            color: #fff;
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
        }
        
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 2rem;
        }
        
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s;
            position: relative;
            padding-bottom: 5px;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--secondary);
            color: #fff;
            padding: 0.6rem 1.2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid var(--secondary);
        }
        
        .cta-button:hover {
            background-color: transparent;
            color: var(--light);
        }

        /* Hero Section */
        .hero {
            background: url('/api/placeholder/1600/800') center/cover no-repeat;
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-align: center;
            margin-top: 70px;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 0 1rem;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
        }
        
        .btn-primary {
            background-color: var(--secondary);
            color: #fff;
            border: 2px solid var(--secondary);
        }
        
        .btn-primary:hover {
            background-color: #c0392b;
            border-color: #c0392b;
        }
        
        .btn-outline {
            background-color: transparent;
            color: #fff;
            border: 2px solid #fff;
        }
        
        .btn-outline:hover {
            background-color: #fff;
            color: var(--primary);
        }
        
        .festival-countdown {
            background-color: rgba(44, 62, 80, 0.9);
            padding: 2rem;
            border-radius: 10px;
            margin-top: 2rem;
        }
        
        .countdown-title {
            margin-bottom: 1rem;
            font-size: 1.5rem;
	    color: white;
        }
        
        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }
        
        .countdown-item {
            text-align: center;
        }
        
        .countdown-number {
            font-size: 2.5rem;
            font-weight: 700;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }
        
        .countdown-label {
            margin-top: 0.5rem;
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        /* About Section */
        .about {
            padding: 6rem 0;
            background-color: #fff;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .about-image {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .about-image img {
            width: 100%;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image img:hover {
            transform: scale(1.05);
        }

        /* Highlights Section */
        .highlights {
            padding: 6rem 0;
            background-color: #f8f9fa;
        }
        
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .highlight-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            padding: 2rem;
            text-align: center;
        }
        
        .highlight-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .highlight-icon {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .highlight-content h3 {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
            color: var(--dark);
        }
        
        .highlight-content p {
            margin-bottom: 1.5rem;
            color: #666;
        }

        /* Schedule Section */
        .schedule {
            padding: 6rem 0;
            background-color: #fff;
        }
        
        .schedule-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
        }
        
        .schedule-tab {
            padding: 1rem 2rem;
            background-color: #f1f1f1;
            border: none;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .schedule-tab:first-child {
            border-top-left-radius: 30px;
            border-bottom-left-radius: 30px;
        }
        
        .schedule-tab:last-child {
            border-top-right-radius: 30px;
            border-bottom-right-radius: 30px;
        }
        
        .schedule-tab.active {
            background-color: var(--primary);
            color: #fff;
        }
        
        .schedule-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .schedule-day {
            display: none;
        }
        
        .schedule-day.active {
            display: block;
        }
        
        .schedule-item {
            display: flex;
            background-color: #f8f9fa;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            margin-bottom: 1.5rem;
            transition: transform 0.3s;
        }
        
        .schedule-item:hover {
            transform: translateY(-5px);
        }
        
        .schedule-time {
            background-color: var(--primary);
            color: #fff;
            padding: 1.5rem;
            font-weight: 600;
            min-width: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
        }
        
        .schedule-details {
            padding: 1.5rem;
            flex-grow: 1;
        }
        
        .schedule-title {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }
        
        .schedule-location {
            display: flex;
            align-items: center;
            color: #666;
            margin-bottom: 0.8rem;
        }
        
        .schedule-location i {
            margin-right: 0.5rem;
            color: var(--secondary);
        }
        
        .schedule-description {
            color: #666;
        }

        /* Performers Section */
        .performers {
            padding: 6rem 0;
            background-color: #f8f9fa;
        }
        
        .performers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .performer-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .performer-card:hover {
            transform: translateY(-10px);
        }
        
        .performer-image {
            height: 250px;
            overflow: hidden;
        }
        
        .performer-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .performer-card:hover .performer-image img {
            transform: scale(1.1);
        }
        
        .performer-info {
            padding: 1.5rem;
            text-align: center;
        }
        
        .performer-name {
            font-size: 1.3rem;
            margin-bottom: 0.3rem;
            color: var(--dark);
        }
        
        .performer-type {
            color: var(--secondary);
            font-weight: 500;
            margin-bottom: 1rem;
        }
        
        .performer-socials {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .performer-socials a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background-color: #f1f1f1;
            border-radius: 50%;
            color: var(--dark);
            transition: all 0.3s;
        }
        
        .performer-socials a:hover {
            background-color: var(--primary);
            color: #fff;
        }

        /* Gallery Section */
        .gallery {
            padding: 6rem 0;
            background-color: #fff;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 1 / 1;
        }
        
        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-item:hover .gallery-image {
            transform: scale(1.1);
        }
        
        .gallery-icon {
            color: #fff;
            font-size: 2rem;
        }

        /* Tickets Section */
        .tickets {
            padding: 6rem 0;
            background: var(--bg-gradient);
            color: #fff;
        }
        
        .tickets .section-title h2 {
            color: #fff;
        }
        
        .tickets .section-title h2:after {
            background-color: #fff;
        }
        
        .tickets-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .ticket-card {
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 3rem 2rem;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .ticket-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .ticket-card::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 100px;
            height: 100px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .ticket-name {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #fff;
            position: relative;
        }
        
        .ticket-price {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: #fff;
        }
        
        .ticket-price span {
            font-size: 1.2rem;
            font-weight: 400;
        }
        
        .ticket-features {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .ticket-features li {
            margin-bottom: 1rem;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .ticket-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
        }
        
        .ticket-btn {
            display: inline-block;
            background-color: #fff;
            color: var(--primary);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .ticket-btn:hover {
            background-color: var(--accent);
            color: #fff;
        }
        
        .ticket-popular {
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--accent);
            color: #fff;
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            border-bottom-left-radius: 15px;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: #fff;
            padding-top: 4rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            padding-bottom: 4rem;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .footer-logo img {
            height: 50px;
            margin-right: 1rem;
        }
        
        .footer-about p {
            margin-bottom: 1.5rem;
            color: #ccc;
        }
        
        .footer-socials {
            display: flex;
            gap: 1rem;
        }
        
        .footer-socials a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #fff;
            transition: all 0.3s;
        }
        
        .footer-socials a:hover {
            background-color: var(--accent);
            transform: translateY(-5px);
        }
        
        .footer-title {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: #fff;
            position: relative;
            padding-bottom: 0.8rem;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 1rem;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
            display: inline-flex;
            align-items: center;
        }
        
        .footer-links a i {
            margin-right: 0.5rem;
            color: var(--secondary);
        }
        
        .footer-links a:hover {
            color: #fff;
        }
        
        .footer-contact li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            color: #ccc;
        }
        
        .footer-contact i {
            margin-right: 1rem;
            color: var(--secondary);
        }
        
        .footer-bottom {
            padding: 1.5rem 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #ccc;
            font-size: 0.9rem;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--secondary);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            text-decoration: none;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            transition: all 0.3s;
            opacity: 0;
            visibility: hidden;
            z-index: 999;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--primary);
            transform: translateY(-5px);
        }
        
        /* Media Queries */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .about-image {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease-in-out;
                z-index: 999;
            }
            
            .nav-links.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            
            .nav-links li {
                margin: 1rem 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .festival-countdown {
                padding: 1.5rem;
            }
            
            .countdown-number {
                font-size: 2rem;
                min-width: 60px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .countdown-timer {
                flex-wrap: wrap;
                justify-content: space-around;
            }
            
            .schedule-item {
                flex-direction: column;
            }
            
            .schedule-time {
                padding: 1rem;
                min-width: auto;
                width: 100%;
            }
        }




/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #155e8a;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-details p, 
.contact-details a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #155e8a;
}

.contact-socials {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #155e8a;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s;
}

.contact-socials a:hover {
    background-color: #e74c3c;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-bottom: 1rem;
    }
    
    .contact-socials {
        justify-content: center;
    }
}



/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    background-color: #f8f9fa;
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: #2c3e50;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f1f1f1;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: #155e8a;
}

.faq-question.active:after {
    content: '-';
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: #fff;
}

.faq-answer.active {
    padding: 1.5rem !important;
    max-height: 1000px !important;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-question {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
    
    .faq-question:after {
        font-size: 1.2rem;
        right: 1.2rem;
    }
    
    .faq-answer.active {
        padding: 1.2rem;
    }
}

@media (max-width: 576px) {
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .faq-question:after {
        font-size: 1rem;
        right: 1rem;
    }
    
    .faq-answer.active {
        padding: 1rem;
    }
}









/* Impressum Section Styles */
.impressum {
    padding: 6rem 0;
    background-color: #fff;
}

.impressum-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.impressum-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.impressum-box h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.8rem;
}

.impressum-group {
    margin-bottom: 2rem;
}

.impressum-group:last-child {
    margin-bottom: 0;
}

.impressum-group h4 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.impressum-group p {
    color: #666;
    margin-bottom: 0.3rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Responsive Design für Impressum */
@media (max-width: 992px) {
    .impressum-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .impressum-box {
        padding: 1.5rem;
    }
    
    .impressum-box h3 {
        font-size: 1.2rem;
    }
    
    .impressum-group h4 {
        font-size: 1rem;
    }
}