:root {
    --font-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-serif: "Georgia", "Times New Roman", serif;
    --color-text: #333;
    --color-background: #fff;
    --color-primary: #f59e0b; /* Orange */
    --color-secondary: #facc15; /* Yellow */
}

html {
    box-sizing: border-box;
    font-size: 100%; /* 16px */
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    font-family: var(--font-sans-serif);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
.header {
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 3rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 120px;
    height: auto;
    margin-right: 1.5rem;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.text-content p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem; /* Increased from 1rem */
}

.footer-bottom {
    text-align: right;
}

.footer-left p {
    margin: 0;
    font-size: 1.1rem; /* Increased from 0.9rem */
    font-weight: 500;
}

.footer-right {
    display: flex;
    align-items: center;
}

.btn-offer {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-background);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out;
}

.btn-offer:hover {
    background-color: #d97706; /* Darker Orange */
}

.link-imprint {
    font-size: 0.8rem;
    color: #777;
    text-decoration: none;
}

.link-imprint:hover {
    text-decoration: underline;
}


/* Responsive */
@media (max-width: 992px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .text-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .header {
        margin-bottom: 2rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 2.5rem; /* Increased from 1.5rem */
    }

    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 80px;
        margin-right: 1rem;
    }
    .logo-text {
        font-size: 1rem;
    }
    .text-content h1 {
        font-size: 1.8rem;
    }
} 