
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Header Styles */
.header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
    min-height: 10vh;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
}

.logo {
    height: 90px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
    cursor: pointer;
}

.header-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

.content {
    text-align: center;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: white;
}

h1 {
    color: #b09551;
    font-size: 3.5em;
    margin: 30px 0;
    font-weight: normal;
}

h2 {
    color: #b09551;
    font-size: 2.5em;
    margin: 30px 0 20px 0;
    font-weight: normal;
}

p {
    color: #4C4C55;
    line-height: 1.6;
    margin: 20px 0;
    font-size: 1.3em;
}

.text-container {
    text-align: center;
    margin: 30px auto;
    padding: 30px;
    border: 5px solid #b09551;
    border-radius: 15px;
    background-color: #fafafa;
    max-width: 50vw;
}

a {
    display: block;
    margin: 10px 0;
    text-decoration: none;
    color: #333;
    font-size: 1.3em;
    line-height: 1.4;
}

a:hover {
    color: #b09551;
}

/* Footer Styles */
.footer {
    background-color: #2c2c2c;
    color: white;
    padding: 40px 0 20px 0;
    margin-top: 50px;
}

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

.footer-left {
    flex: 1;
}

.footer-left h3 {
    color: #b09551;
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: normal;
}

.contact-info p {
    color: white;
    margin: 5px 0;
    font-size: 0.9em;
    line-height: 1.4;
}

.contact-info p:first-child {
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-links {
    margin-top: 40px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
    font-size: 0.9em;
    display: inline;
}

.footer-links a:hover {
    color: #b09551;
}

.footer-center {
    flex: 0 0 auto;
    text-align: center;
    margin-left: 50px;
}

.footer-logo {
    max-width: 300px;
    height: auto;
}

/* Contact Section Styles */
.contact-section {
    background-color: white;
    text-align: center;
    padding: 40px 20px;
    margin: 30px auto;
    max-width: 800px;
}

.contact-section h2 {
    color: #b09551;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: normal;
}

.contact-section p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.contact-box {
    background-color: #fafafa;
    border: 5px solid #b09551;
    border-radius: 10px;
    padding: 25px;
    margin: 20px auto;
    max-width: 50vw;
}

.contact-box p {
    margin: 8px 0;
    font-size: 1.1em;
    color: #333;
}

.contact-box p:first-child {
    color: #b09551;
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .text-container,
    .contact-box {
        max-width: 90vw;
        padding: 20px;
    }
    
    h1 {
        font-size: 2.5em;
    }
    
    h2 {
        font-size: 2em;
    }
    
    .logo {
        height: 60px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-center {
        margin-left: 0;
        margin-top: 20px;
    }
}

/* Impressum Styles */
.impressum-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background-color: #fafafa;
    border: 3px solid #b09551;
    border-radius: 15px;
    padding: 40px;
}

.impressum-container h2 {
    color: #b09551;
    font-size: 1.5em;
    margin-bottom: 30px;
    text-align: center;
}

.impressum-container p {
    margin: 8px 0;
    font-size: 1.1em;
    color: #333;
    line-height: 1.4;
}

/* AGB Styles */
.agb-container {
    max-width: 80vw;
    margin: 0 auto;
    text-align: left;
    background-color: #fafafa;
    border: 3px solid #b09551;
    border-radius: 15px;
    padding: 40px;
}

.agb-container h2 {
    color: #b09551;
    font-size: 1.8em;
    margin-bottom: 30px;
    text-align: left;
}

.agb-container h3 {
    color: #b09551;
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
}

.agb-container p {
    margin: 10px 0;
    font-size: 1.0em;
    color: #333;
    line-height: 1.6;
    text-align: left !important;
}

/* Download Button Styles */
.download-section {
    text-align: left;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #b09551;
}

.download-button {
    display: inline-block;
    background-color: #f5f5f5;
    color: #333;
    padding: 15px 30px;
    border: 2px solid #b09551;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin: 10px 0;
}

.download-button:hover {
    background-color: #b09551;
    color: white;
}