/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*font-family: 'DM Sans', sans-serif;*/
}

/* Imprint Section with Background */
.imprint-section {
    position: relative;
    background: url('/Images/bremerconstruction.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50vh;
    color: white;
    width: 100%;
}

/* Add Dark Overlay + Blur Effect */
.imprint-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

/* Text Styling */
.imprint-overlay {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    padding: 10%;
    width: 100%;
    text-align: center;
}

/* Imprint Row: Image Left, Text Right */
.imprint-row {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    padding: 3% 5%;
    width: 70%;
}

/* Image Section */
.imprint-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imprint-image img {
    width: 80%;
    height: auto;
    max-height: 50vh;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Text Section */
.imprint-text {
    flex: 1.5;
    max-width: 60%;
    font-size: 20px;
    line-height: 1.6;
    text-align: justify;
    color: black;
}

/* Contact Info Table */
.contact-info {
    width: 100%;
    border-collapse: collapse;
}

.contact-info td {
    padding: 10px;
    vertical-align: top;
    font-size: 20px;
}

/* Font Awesome Icons */
.contact-info i {
    font-size: 22px;
    color: black;
    padding-right: 10px;
}

/* Links */
.contact-info a {
    color: #0073e6;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Disclaimer Section */
.disclaimer-section {
    width: 70%;
    margin: 40px auto;
    padding: 20px;
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
    color: black;
}

.disclaimer-section h1 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .imprint-overlay {
        font-size: 2rem;
        padding: 5%;
    }

    .imprint-row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        width: 90%;
    }

    .imprint-image {
        max-width: 90%;
        display: flex;
        justify-content: center;
    }

    .imprint-image img {
        width: 100%;
        max-height: 40vh;
        object-fit: contain;
    }

    .imprint-text {
        max-width: 100%;
        padding: 10px;
    }

    .disclaimer-section {
        width: 90%;
    }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .imprint-image {
        max-width: 100%;
    }

    .imprint-image img {
        max-height: 30vh;
    }

    .imprint-text {
        font-size: 1rem;
        padding: 5%;
    }

    .imprint-row {
        width: 100%;
        padding: 5% 5%;
    }

    .contact-info i {
        font-size: 18px;
    }

    .disclaimer-section {
        width: 100%;
        padding: 10%;
    }
}
