/* Imprint Hero */
.imprint-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imprint-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.imprint-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imprint-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    z-index: 2;
}

.imprint-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

/* Imprint Section */
.imprint-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #1a0020, #000);
    position: relative;
}

.imprint-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.imprint-section h2.section-title {
    font-size: 2.5rem;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    color: var(--gold-color);
}

.imprint-section p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.section-title:after { left: 5% !important; }
/* Responsive Styles */
@media (max-width: 768px) {
    .imprint-hero {
        height: 40vh;
    }

    .imprint-section h2.section-title {
        font-size: 2rem;
    }
.section-title:after { left: 15% !important; }
}
