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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #FCFCFC;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5A8A72;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.logo-link:hover {
    color: #4A7A62;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #5A8A72;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #5A8A72;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding-top: 12rem;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 85, 65, 0.6) 0%, rgba(35, 75, 55, 0.7) 50%, rgba(25, 65, 45, 0.6) 100%);
}



.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #F5F5DC;
    color: #333333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #EFEFD0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

/* Section separators */
section:not(.hero):not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #5A8A72 50%, transparent 100%);
    opacity: 0.3;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5A8A72;
    text-align: center;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #F8FBF9 0%, #FCFCFC 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%235A8A72" opacity="0.1"/><circle cx="60" cy="40" r="1.5" fill="%235A8A72" opacity="0.1"/><circle cx="80" cy="70" r="2.5" fill="%235A8A72" opacity="0.1"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    display: flex;
    justify-content: center;
}

.professional-photo {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.about-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5A8A72;
    margin-bottom: 1.5rem;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #5A8A72;
    margin: 2rem 0 1rem 0;
}

.about-intro {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #4A7A62;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.qualifications-list {
    list-style: none;
    padding: 0;
}

.qualifications-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.qualifications-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5A8A72;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(45deg, #FAF8F5 0%, #FCFCFC 50%, #F8FBF9 100%);
    padding: 5rem 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0 50 Q25 30 50 50 Q75 70 100 50" stroke="%235A8A72" stroke-width="0.5" fill="none" opacity="0.1"/><path d="M0 60 Q25 40 50 60 Q75 80 100 60" stroke="%235A8A72" stroke-width="0.5" fill="none" opacity="0.1"/></svg>');
    opacity: 0.2;
    pointer-events: none;
}

.testimonial-carousel {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.testimonial-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.testimonial-slide {
    display: none;
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #5A8A72;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-slide::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: #5A8A72;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.testimonial-slide p {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #444444;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: #5A8A72;
    font-weight: 600;
    font-size: 1.2rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    background-color: #5A8A72;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background-color: #4A7A62;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #CCCCCC;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #5A8A72;
    transform: scale(1.2);
}

/* Services Section */
.services {
    background-color: #F8F8F8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, white 0%, #FAFAFA 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(90, 138, 114, 0.12);
    transition: all 0.3s ease;
    border: 1px solid #E5E5E5;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(90, 138, 114, 0.05) 0%, transparent 70%);
    transition: all 0.3s ease;
    opacity: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(90, 138, 114, 0.2);
    border-color: #5A8A72;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #5A8A72;
    margin-bottom: 1rem;
}

.service-card p {
    line-height: 1.7;
    color: #666666;
}


/* Gallery Section */
.gallery {
    background: linear-gradient(135deg, #FCFCFC 0%, #F8FBF9 100%);
    padding: 5rem 0;
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 150px;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="20" width="60" height="40" stroke="%235A8A72" stroke-width="2" fill="none" opacity="0.1"/><circle cx="35" cy="35" r="8" stroke="%235A8A72" stroke-width="1.5" fill="none" opacity="0.1"/><path d="M20 50 L40 35 L60 45 L80 30" stroke="%235A8A72" stroke-width="1.5" fill="none" opacity="0.1"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.gallery-carousel {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.gallery-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(90, 138, 114, 0.2);
}

.gallery-slide {
    display: none;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-slide.active {
    display: block;
    opacity: 1;
}

.gallery-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 2rem;
    text-align: center;
}

.gallery-caption h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    font-size: 1rem;
    opacity: 0.9;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #5A8A72 0%, #4A7A62 100%);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(90, 138, 114, 0.3);
}

.gallery-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(90, 138, 114, 0.4);
}

.gallery-dots {
    display: flex;
    gap: 1rem;
}

.gallery-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #E5E5E5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background-color: #5A8A72;
    transform: scale(1.2);
}

.gallery-dot:hover {
    background-color: #5A8A72;
    opacity: 0.7;
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, #FCFCFC 0%, #F8FBF9 100%);
    position: relative;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    right: 10%;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="%235A8A72" opacity="0.05"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

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

.contact-form {
    background: linear-gradient(135deg, white 0%, #FAFAFA 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(90, 138, 114, 0.15);
    border: 1px solid rgba(90, 138, 114, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #5A8A72;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5A8A72;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: #5A8A72;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #5A8A72;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #4A7A62;
}

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

.contact-details {
    background: linear-gradient(135deg, white 0%, #F8FBF9 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(90, 138, 114, 0.15);
    border: 1px solid rgba(90, 138, 114, 0.1);
}

.contact-details h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #5A8A72;
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-item strong {
    color: #5A8A72;
}

.contact-item a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #5A8A72;
}

.map-container {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.footer {
    background-color: #333333;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #F5F5DC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    color: #CCCCCC;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-slide {
        padding: 2rem;
    }

    .carousel-controls {
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .service-card,
    .contact-form,
    .contact-details {
        padding: 1.5rem;
    }

    .cost-item {
        padding: 1.5rem;
    }

    .testimonial-slide {
        padding: 1.5rem;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .gallery-image {
        height: 350px;
    }

    .gallery-caption {
        padding: 1.5rem;
    }

    .gallery-caption h3 {
        font-size: 1.2rem;
    }

    .gallery-caption p {
        font-size: 0.9rem;
    }

    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .gallery-controls {
        gap: 1rem;
    }
}

/* Impressum Section */
.impressum-section {
    background: linear-gradient(135deg, #F8FBF9 0%, #FCFCFC 100%);
    padding: 8rem 0 5rem 0;
    min-height: 80vh;
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, white 0%, #FAFAFA 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(90, 138, 114, 0.15);
    border: 1px solid rgba(90, 138, 114, 0.1);
}

.impressum-block {
    margin-bottom: 3rem;
}

.impressum-block h2 {
    color: #5A8A72;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #E5E5E5;
    padding-bottom: 0.5rem;
}

.impressum-block p {
    line-height: 1.7;
    color: #666666;
    margin-bottom: 1rem;
}

.impressum-block .contact-info {
    background: linear-gradient(135deg, #F8FBF9 0%, #FCFCFC 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #5A8A72;
}

.contact-footer {
    text-align: center;
    padding: 2rem 0;
}

.contact-footer a {
    color: #5A8A72;
    text-decoration: none;
    font-weight: 500;
}

.contact-footer a:hover {
    text-decoration: underline;
}

.source-reference {
    font-size: 0.85rem;
    color: #999999;
    font-style: italic;
    margin-top: 1rem;
}

.back-button-container {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #E5E5E5;
}

.nav-link.active {
    color: #5A8A72;
    font-weight: 600;
}

/* Legal Hero Section */
.legal-hero {
    background: linear-gradient(135deg, #5A8A72 0%, #4A7A62 100%);
    padding: 8rem 0 4rem 0;
    text-align: center;
    color: white;
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Legal Content */
.legal-content {
    background: linear-gradient(135deg, #F8FBF9 0%, #FCFCFC 100%);
    padding: 5rem 0;
    min-height: 80vh;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, white 0%, #FAFAFA 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(90, 138, 114, 0.15);
    border: 1px solid rgba(90, 138, 114, 0.1);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #5A8A72;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #E5E5E5;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: #5A8A72;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}

.legal-section p {
    line-height: 1.7;
    color: #666666;
    margin-bottom: 1rem;
}

.legal-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #555555;
}

.contact-info-legal {
    background: #F8FBF9;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #5A8A72;
    margin: 1rem 0;
}

.contact-info-legal p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info-legal a {
    color: #5A8A72;
    text-decoration: none;
    font-weight: 600;
}

.contact-info-legal a:hover {
    text-decoration: underline;
}

.legal-back-button {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #E5E5E5;
}

.btn-back {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #5A8A72 0%, #4A7A62 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(90, 138, 114, 0.3);
}

.btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(90, 138, 114, 0.4);
}

/* Responsive styles for legal pages */
@media (max-width: 768px) {
    .impressum-section {
        padding: 6rem 0 3rem 0;
    }
    
    .impressum-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .impressum-block h2 {
        font-size: 1.2rem;
    }

    .legal-hero {
        padding: 6rem 0 3rem 0;
    }

    .legal-title {
        font-size: 2rem;
    }

    .legal-subtitle {
        font-size: 1.1rem;
    }

    .legal-wrapper {
        padding: 2rem;
        margin: 0 1rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }
}
