@font-face {
    font-family: 'Bahnschrift';
    src: url('https://agencio.de/fonts/bahnschrift-light/Bahnschrift.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('https://agencio.de/fonts/lato-v23-latin/lato-v23-latin-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-color: #FFFFFF;
    --accent-bg-color: #ECF6F0;
    --text-color: #222222;
    --accent-text-color: #3ecf8e;
    --header-bg-color: #F8F9FA;
    --footer-bg-color: #293B48;
    --footer-text-color: #3ecf8e;
    --font-family: -apple-system, "Lato", "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    background-color: var(--header-bg-color);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
}

header img {
    height: 40px;
    width: auto;
}

span {
    color: var(--accent-text-color);
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero {
    width: 100%;
}

.main-headline {
    font-family: 'Bahnschrift', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.content-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
}

.left-column,
.right-column {
    flex: 1;
}

.left-column p,
.info-text p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1rem;
}

.info-text {
    margin-top: 2rem;
}

.partner-info {
    background-color: var(--accent-bg-color);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-text-color);
}

.partner-info h3 {
    font-family: 'Bahnschrift', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

#application-form-container {
    background-color: #f9f9f9;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    color: #888;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
}

/* Footer */
footer {
    background-color: var(--footer-bg-color);
    color: #fff;
    padding: 3rem 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    align-items: flex-start;
}

.footer-left img {
    height: 30px;
    width: auto;
}

.footer-left address {
    font-style: normal;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-right {
    display: flex;
    gap: 2rem;
}

.footer-right a {
    color: var(--footer-text-color);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.footer-right a:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .content-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .hero {
        text-align: center;
    }

    .main-headline {
        font-size: 2rem;
    }

    .partner-info {
        text-align: left;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left {
        align-items: center;
    }
}