/* Grundlegende Reset und Basisstile */
:root {
    --primary-color: #0066cc;
    --secondary-color: #00aaff;
    --accent-color: #ff6600;
    --background-color: #f8f9fa;
    --dark-color: #333333;
    --light-color: #ffffff;
    --text-color: #333333;
    --border-color: #e1e4e8;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --font-primary: 'Roboto', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Anpassung des Scrollbars */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
    border: 3px solid var(--gray-200);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: bold;
}

button:hover {
    background-color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

/* Header und Navigation */
header {
    background-color: var(--light-color);
    box-shadow: var(--box-shadow);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.logo-container h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

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

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: bold;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px;
    transition: var(--transition);
}

/* Hero-Bereich */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--light-color);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: #ff8533;
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Featured Posts Section */
.featured-posts {
    padding: 4rem 2rem;
    background-color: var(--light-color);
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    position: relative;
}

.featured-posts h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.post-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
    color: var(--gray-700);
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: bold;
    position: relative;
}

.read-more:after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover:after {
    margin-left: 10px;
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 2rem;
    background-color: var(--gray-100);
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 1rem;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--gray-700);
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0 25px;
    background-color: var(--primary-color);
    color: var(--light-color);
    font-weight: bold;
    border: 2px solid var(--primary-color);
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 4rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo .logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    color: var(--light-color);
    margin-bottom: 1rem;
}

.footer-links h4, .footer-contact h4 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links h4:after, .footer-contact h4:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
    border-radius: 1.5px;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--light-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    color: var(--gray-400);
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin-bottom: 0;
    color: var(--gray-500);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-800);
    color: var(--light-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Blog-Seite */
.blog-header {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--primary-color);
    color: var(--light-color);
}

.blog-header h2 {
    color: var(--light-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.blog-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.blog-posts {
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.post-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-post {
    display: flex;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.post-image {
    flex: 2;
    max-width: 300px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-details {
    flex: 3;
    padding: 1.5rem;
}

.post-date {
    display: block;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.post-details h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.post-details p {
    margin-bottom: 1.5rem;
    color: var(--gray-700);
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
}

.sidebar-widget h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.sidebar-widget h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    border-radius: 1.5px;
}

.sidebar-widget ul li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-widget ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-newsletter input {
    padding: 10px 15px;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.sidebar-newsletter button {
    border-radius: var(--border-radius);
    padding: 10px;
    background-color: var(--primary-color);
    color: var(--light-color);
    font-weight: bold;
}

/* Über uns Seite */
.about-header {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--primary-color);
    color: var(--light-color);
}

.about-header h2 {
    color: var(--light-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.about-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.about-mission {
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-content {
    flex: 1;
}

.mission-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.mission-content h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    border-radius: 1.5px;
}

.mission-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--gray-700);
}

.mission-image {
    flex: 1;
}

.mission-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
}

.team {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.team h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.team h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1.5px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h4 {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.3rem;
}

.member-title {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.team-member p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-700);
}

.timeline {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.timeline h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1.5px;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container:before {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--gray-300);
    top: 0;
    bottom: 0;
    left: 20px;
    border-radius: 1.5px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 50px;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    left: 11px;
    top: 5px;
    z-index: 1;
}

.timeline-content {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.values {
    padding: 4rem 2rem;
    background-color: var(--gray-100);
    text-align: center;
}

.values h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.values h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1.5px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-item p {
    color: var(--gray-700);
}

/* Kontaktseite */
.contact-header {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--primary-color);
    color: var(--light-color);
}

.contact-header h2 {
    color: var(--light-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.contact-content {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.info-card .social-icons {
    justify-content: center;
    margin-top: 1rem;
}

.contact-form-container {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.contact-form-container h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-form-container h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    border-radius: 1.5px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group:nth-child(3),
.form-group:nth-child(4),
.form-group:nth-child(5),
.contact-form button {
    grid-column: 1 / span 2;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: bold;
    font-size: 1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.map-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.map-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.map-section h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1.5px;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section h3 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.faq-section h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1.5px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Blog Post Seite */
.post-main {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.blog-post-full {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.post-header {
    padding: 2rem;
    background-color: var(--primary-color);
    color: var(--light-color);
}

.post-header h2 {
    color: var(--light-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.post-meta span {
    display: flex;
    align-items: center;
}

.post-meta i {
    margin-right: 0.5rem;
}

.post-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.post-content {
    padding: 2rem;
}

.post-intro {
    font-size: 1.2rem;
    color: var(--gray-700);
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.post-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.post-content h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    border-radius: 1.5px;
}

.post-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--gray-800);
}

.post-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content ul, .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content ul li, .post-content ol li {
    margin-bottom: 0.5rem;
}

.post-content ul {
    list-style-type: disc;
}

.post-content ol {
    list-style-type: decimal;
}

.post-image-container {
    margin: 2rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.post-image-container img {
    width: 100%;
}

.image-caption {
    padding: 1rem;
    background-color: var(--gray-100);
    color: var(--gray-700);
    font-style: italic;
    text-align: center;
    margin-bottom: 0;
}

.post-quote {
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--gray-100);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.post-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.post-quote cite {
    display: block;
    text-align: right;
    font-weight: bold;
    color: var(--gray-700);
}

.post-footer {
    padding: 2rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.post-tags span {
    font-weight: bold;
    color: var(--gray-700);
}

.post-tags a {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--gray-200);
    color: var(--gray-700);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.post-share span {
    font-weight: bold;
    color: var(--gray-700);
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: var(--light-color);
    font-size: 1rem;
    transition: var(--transition);
}

.share-facebook {
    background-color: #3b5998;
}

.share-twitter {
    background-color: #1da1f2;
}

.share-linkedin {
    background-color: #0077b5;
}

.share-email {
    background-color: #ff6600;
}

.post-share a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.post-author-box {
    padding: 2rem;
    background-color: var(--gray-100);
    display: flex;
    gap: 2rem;
    align-items: center;
}

.author-image {
    flex-shrink: 0;
}

.author-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--light-color);
    box-shadow: var(--box-shadow);
}

.author-bio h4 {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-bio h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.author-bio p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--gray-300);
    color: var(--gray-700);
    transition: var(--transition);
}

.author-social a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.related-posts {
    padding: 2rem;
    border-top: 1px solid var(--gray-200);
}

.related-posts h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.related-posts h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    border-radius: 1.5px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-post {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post h4 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.2rem;
}

.related-post p {
    padding: 0 1rem;
    color: var(--gray-700);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.related-post .read-more {
    display: inline-block;
    margin: 0 1rem 1rem;
}

.comments-section {
    padding: 2rem;
    border-top: 1px solid var(--gray-200);
}

.comments-section h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.comments-section h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    border-radius: 1.5px;
}

.comment {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.comment-avatar {
    flex-shrink: 0;
}

.comment-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex-grow: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-header h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.comment-date {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.comment-content p {
    margin-bottom: 0.8rem;
    color: var(--gray-700);
}

.comment-actions {
    display: flex;
    gap: 1rem;
}

.reply-button {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: bold;
}

.comment.reply {
    margin-left: 2rem;
    margin-top: 1.5rem;
    background-color: var(--gray-100);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.comment-form {
    margin-top: 3rem;
}

.comment-form h3 {
    margin-bottom: 2rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: var(--light-color);
    margin: 10% auto;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalOpen 0.4s;
}

@keyframes modalOpen {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--gray-600);
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-button:hover {
    color: var(--error-color);
}

/* Danke-Modal */
.thank-you-message {
    text-align: center;
    padding: 2rem 0;
}

.thank-you-message i {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.thank-you-message h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.thank-you-message p {
    margin-bottom: 2rem;
    color: var(--gray-700);
    font-size: 1.1rem;
}

.ok-button {
    background-color: var(--success-color);
    padding: 10px 30px;
    font-size: 1.1rem;
    border-radius: var(--border-radius);
    color: var(--light-color);
    transition: var(--transition);
}

.ok-button:hover {
    background-color: #218838;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--gray-800);
    color: var(--light-color);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 8px 20px;
    border-radius: var(--border-radius);
    font-weight: bold;
    transition: var(--transition);
}

#accept-cookies {
    background-color: var(--success-color);
}

#accept-cookies:hover {
    background-color: #218838;
}

#customize-cookies {
    background-color: var(--gray-600);
}

#customize-cookies:hover {
    background-color: var(--gray-700);
}

#reject-cookies {
    background-color: var(--error-color);
}

#reject-cookies:hover {
    background-color: #c82333;
}

.cookie-more-info {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.cookie-more-info a {
    color: var(--gray-300);
    text-decoration: underline;
}

.cookie-more-info a:hover {
    color: var(--light-color);
}

/* Beschwerde-Button */
.complaint-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
}

.complaint-button button {
    background-color: var(--accent-color);
    color: var(--light-color);
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.complaint-button button:hover {
    background-color: #ff8533;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.complaint-button i {
    font-size: 1.2rem;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-content p {
        margin: 0 auto 2rem;
    }
    
    .about-mission {
        flex-direction: column;
        gap: 2rem;
    }
    
    .post-main {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        order: -1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 1rem;
    }
    
    .nav-links {
        position: absolute;
        right: 0;
        top: 80px;
        background-color: var(--light-color);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 999;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .nav-active {
        transform: translateX(0%);
    }
    
    .burger {
        display: block;
    }
    
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .toggle .line2 {
        opacity: 0;
    }
    
    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .post-image {
        max-width: 100%;
    }
    
    .blog-post {
        flex-direction: column;
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
    }
    
    .post-author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .post-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group:nth-child(3),
    .form-group:nth-child(4),
    .form-group:nth-child(5),
    .contact-form button {
        grid-column: 1;
    }
}

@media screen and (max-width: 480px) {
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .logo-container h1 {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .featured-posts h2, .about-header h2, .contact-header h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 1rem;
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius);
    }
    
    .comment {
        flex-direction: column;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .complaint-button {
        bottom: 20px;
        right: 20px;
    }
    
    .complaint-button button {
        padding: 10px 15px;
    }
}
