body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('../images/background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.logo-container {
    margin-bottom: 2rem;
    padding: 20px;
}

.logo {
    max-width: 250px; /* Slightly smaller to match proportion */
    width: 100%;
    height: auto;
    display: block;
}

.main-content {
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
    max-width: 800px;
}

.main-content h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.main-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
}

.tiktok-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    display: block;
    margin-top: 0.5rem;
}

.footer {
    position: absolute;
    bottom: 30px;
    right: 40px;
    width: auto;
    text-align: right;
    color: #ffffff;
    font-size: 1rem;
}

.footer a {
    color: inherit;
    text-decoration: none;
}

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

/* Impressum specific styles */
.impressum-body {
    background-color: #FDFBF7;
    color: #9E8B6B;
    padding: 40px;
    line-height: 1.5;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

.impressum-header {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-bottom: 60px;
    padding-bottom: 0;
}

.impressum-logo {
    height: 120px; /* Larger logo as per design */
    width: auto;
}

.impressum-content h1 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #9E8B6B;
}

.impressum-content h2 {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: #9E8B6B;
}

.impressum-content p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #9E8B6B;
}

.company-name {
    font-weight: bold;
}

.address-block {
    margin-bottom: 2rem;
}

.legal-block {
    margin-bottom: 1.5rem;
}

.impressum-content a {
    color: #9E8B6B;
    text-decoration: none;
}

.impressum-content a:hover {
    text-decoration: underline;
}
