body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background: #35424a;
    color: #ffffff;
    padding: 20px 0;
    border-bottom: #e8491d 3px solid;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header #branding {
    display: flex;
    align-items: center;
}

header #branding img {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.branding-text {
    display: flex;
    flex-direction: column;
}

header #branding h1 {
    margin: 0;
    font-size: 24px;
}

.slogan {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #e8491d;
    font-style: italic;
}

header nav {
    display: flex;
    align-items: center;
}

header ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

header li {
    padding: 0 20px;
}

header a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

.highlight, header .current a {
    color: #e8491d;
    font-weight: bold;
}

.highlight-footer {
    color: #e8491d;
}

.button {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    background: #e8491d;
    border: 0;
    padding: 0 40px;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    margin-top: 20px;
}

.button:hover {
    background: #ff6a47;
    cursor: pointer;
}

/* Index page specific styles */
.content-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.content-left {
    width: 60%;
}

.content-right {
    width: 35%;
}

.content-right img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.partners {
    background: #35424a;
    color: #ffffff;
    padding: 20px 0;
    margin-top: 20px;
}

/*.partner-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}*/

.partner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background-color: #f4f4f4;
    border-radius: 10px;
}

.partner-placeholder {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.partner-placeholder p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #35424a;
}

.contact-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e8491d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #ff6a47;
}

.partner-logo {
    width: 100px;
    height: auto;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
}

/* Common form styles */
form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 40px auto;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="email"],
input[type="text"],
input[type="file"],
textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

button, .submit-btn {
    background-color: #e8491d;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover, .submit-btn:hover {
    background-color: #ff6a47;
}

/* Specific styles for contact form */
.contact-form {
    max-width: 600px;
    margin: 40px auto;
}

.contact-form h2 {
    color: #35424a;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

.success {
    background-color: #d4edda;
    color: #155724;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
}

/* Specific styles for indienen form */
#statusMessage {
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
}

/* FAQ styles */
.faq-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    background-color: #f4f4f4;
    color: #35424a;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
}

.faq-question::after {
    content: '\25BC';
    font-size: 12px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: #e8491d;
    color: #ffffff;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    background-color: #ffffff;
    color: #35424a;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px;
}

footer {
    background: #35424a;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .content-left, .content-right {
        width: 100%;
    }
    
    .content-right {
        margin-top: 20px;
    }
    
    header .container {
        flex-direction: column;
    }
    
    header nav {
        margin-top: 10px;
    }
    
    header ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    header li {
        padding: 10px;
    }
}