/* Globale Stile */
:root {
  --color-bg-dark: #1f1b2e;
  --color-overlay-bg: rgba(31, 27, 46, 0.9);
  --color-text-light: #f8f8f8;
  --color-text-muted: #c7bfdc;
  --color-text-secondary: #a79ebf;
  --color-accent: #9277d0;
  --color-accent-hover: #7a5fc1;
  --color-card-bg: rgba(255, 255, 255, 0.08);
  --color-card-border: rgba(146, 119, 208, 0.3);
  --color-card-shadow: rgba(146, 119, 208, 0.1);
  --color-button-text: #1f1b2e;
    --font-heading: 'Solway', sans-serif;
    --font-body: 'Solway', sans-serif;
}


body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-grey);
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark-grey);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.8rem;
}

h5 {
    font-size: 1.4rem;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-blue);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

.pb-0 {
    padding-bottom: 0;
}

.pt-0 {
    padding-top: 0;
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mb-lg-0 {
    margin-bottom: 0 !important;
    /* Wichtig für Responsivität */
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Button Stile */
.button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.primary-button {
    background-color: var(--primary-blue);
    color: var(--white);
    border: 1px solid var(--primary-blue);
}

.primary-button:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.hero-button {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 1px solid var(--white);
}

.hero-button:hover {
    background-color: var(--light-grey);
    color: var(--dark-blue);
}

.submit-button {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    width: 100%;
}

.submit-button:hover {
    background-color: var(--dark-blue);
}

/* Navigation */
.main-nav {
    background-color: var(--primary-blue);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav .logo h2 {
    color: var(--white);
    margin: 0;
}

.nav-links-wrapper {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.nav-item .nav-link {
    color: var(--white);
    padding: 10px 0;
    display: block;
    font-weight: 400;
    position: relative;
}

.nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.nav-item .nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 20px;
}

/* Dropdown */
.dropdown-menu {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
    list-style: none;
    padding: 10px 0;
    position: absolute;
    /* Muss von JS gesteuert werden */
    display: none;
    /* Muss von JS gesteuert werden */
    min-width: 160px;
    z-index: 1001;
}

.dropdown-menu .dropdown-item {
    color: var(--dark-grey);
    padding: 8px 20px;
    display: block;
    white-space: nowrap;
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--light-grey);
    color: var(--primary-blue);
}

/* Hamburger Menü (für Bootstrap JS beibehalten) */
.nav-toggle {
    display: none;
    /* Standardmäßig ausgeblendet auf größeren Bildschirmen */
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.toggle-icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--white);
    position: relative;
    transition: background-color 0.3s ease;
}

.toggle-icon::before,
.toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    transition: transform 0.3s ease;
}

.toggle-icon::before {
    top: -10px;
}

.toggle-icon::after {
    top: 10px;
}

/* Wenn das Menü geöffnet ist */
.nav-toggle[aria-expanded="true"] .toggle-icon {
    background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .toggle-icon::before {
    transform: translateY(10px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .toggle-icon::after {
    transform: translateY(-10px) rotate(-45deg);
}


/* Hero Section */
.hero-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.carousel-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-image {
    width: 100%;
    height: 200px;
    /* Einheitliche Höhe für Bilder */
    object-fit: cover;
}

.carousel-info {
    padding: 20px;
    color: var(--text-color);
}

.carousel-info h4 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.carousel-info p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.tag {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* Blog Section / Trending Podcast Section */
.blog-section {
    background-color: var(--white);
}

.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-title {
    color: var(--dark-blue);
    font-weight: 700;
}

.article-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    /* Für responsives Layout */
    flex-direction: column;
    /* Für mobiles Layout */
    height: 100%;
    /* Einheitliche Höhe */
}

.article-image-wrap {
    width: 100%;
    height: 200px;
    /* Einheitliche Höhe für Bilder */
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image {
    transform: scale(1.05);
}

.article-info {
    padding: 20px;
    flex-grow: 1;
    /* Lässt den Info-Bereich den Rest des Platzes einnehmen */
    display: flex;
    flex-direction: column;
}

.article-info h5 {
    margin-bottom: 10px;
}

.article-info h5 a {
    color: var(--dark-blue);
    font-size: 1.25rem;
}

.article-info p {
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    background-color: var(--light-grey);
}

.content-block p {
    margin-bottom: 1rem;
}

.about-image {
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

/* Team Section */
.team-section {
    background-color: var(--white);
    padding-top: 50px;
    /* Abstand nach der About-Sektion */
}

.team-member-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    height: 100%;
    /* Einheitliche Höhe */
}

.team-image {
    width: 100%;
    height: 250px;
    /* Einheitliche Höhe für Team-Bilder */
    object-fit: cover;
    margin-bottom: 15px;
}

.team-info h4 {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

/* Contact Section */
.contact-section {
    background-color: var(--primary-blue);
    color: var(--white);
}

.contact-section .section-header .section-title {
    color: var(--white);
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* Abstand zwischen Feldern */
}

.form-field {
    position: relative;
    margin-bottom: 25px;
    width: 100%;
    /* Standard für vollen Spalte */
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1rem;
    color: var(--dark-grey);
    background-color: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-field label {
    position: absolute;
    top: 12px;
    left: 15px;
    color: #6c757d;
    transition: all 0.2s ease-out;
    pointer-events: none;
    font-size: 1rem;
}

.form-control:focus+label,
.form-control:not(:placeholder-shown)+label {
    top: -10px;
    left: 5px;
    font-size: 0.75rem;
    color: var(--primary-blue);
    background-color: var(--white);
    padding: 0 5px;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.col-submit {
    width: 100%;
    text-align: center;
}

/* Services Section / Topics Section */
.services-section {
    background-color: var(--white);
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
}

.service-image-wrap {
    width: 100%;
    height: 180px;
    /* Einheitliche Höhe für Service-Bilder */
    overflow: hidden;
    display: block;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-info {
    padding: 20px;
    text-align: center;
}

.service-info h5 a {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-info p {
    font-size: 0.9rem;
}

/* Approach Section */
.approach-section {
    background-color: var(--light-grey);
}

.approach-details {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    /* Für responsives Layout */
    align-items: flex-start;
}

.approach-image-container {
    padding-right: 20px;
    /* Abstand zum Text */
    width: 100%;
    /* Standard für volle Breite auf kleinen Bildschirmen */
    margin-bottom: 20px;
    /* Abstand zum Text auf kleinen Bildschirmen */
}

.approach-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.approach-info {
    flex-grow: 1;
}

.approach-meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #6c757d;
}

.approach-meta .meta-item {
    margin-right: 20px;
}

.approach-meta .meta-item:last-child {
    margin-right: 0;
}

.approach-meta i {
    margin-right: 5px;
    color: var(--primary-blue);
}

.approach-meta .badge {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.75rem;
    margin-left: 5px;
}

.approach-info p {
    margin-bottom: 15px;
}

.profile-block {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-blue);
}

.profile-block p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.profile-block p strong {
    display: block;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-color);
}

.verified-image {
    width: 16px;
    height: 16px;
    margin-left: 5px;
}

/* Footer */
.site-footer {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-widgets {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer h6 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
}

.newsletter-form-wrap h6 {
    font-size: 1.25rem;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    border-color: var(--white);
    box-shadow: none;
}

.site-footer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    padding-top: 30px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-link-item .footer-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-link-item .footer-link:hover {
    color: var(--white);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    padding: 25px;
    max-width: 450px;
    text-align: center;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-banner h2 {
    color: var(--primary-blue);
    margin-top: 10px;
    margin-bottom: 0;
}

.cookie-banner .bx-cookie {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-color);
}

.cookie-text a {
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cookie-accept-btn,
.cookie-decline-btn {
    padding: 8px 18px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cookie-accept-btn {
    background-color: var(--primary-blue);
    color: var(--white);
}

.cookie-accept-btn:hover {
    background-color: var(--dark-blue);
}

.cookie-decline-btn {
    background-color: var(--light-grey);
    color: var(--dark-grey);
    border: 1px solid #dee2e6;
}

.cookie-decline-btn:hover {
    background-color: #e9ecef;
}

/* Responsives Design */
@media (max-width: 992px) {
    .nav-links-wrapper {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--primary-blue);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 15px;
        display: none;
        /* Versteckt, bis der Toggle geklickt wird (Bootstrap JS) */
    }

    .nav-links-wrapper.show {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-item .nav-link {
        padding: 12px 15px;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    .nav-toggle {
        display: block;
    }

    .col-lg-8,
    .col-lg-6,
    .col-lg-3,
    .col-lg-9,
    .col-lg-7 {
        width: 100%;
    }

    .col-half {
        width: 100%;
        margin-bottom: 30px;
        /* Abstand auf kleineren Bildschirmen */
    }

    .form-group {
        flex-direction: column;
        gap: 0;
    }

    .col-quarter {
        width: 100%;
        margin-bottom: 30px;
        /* Abstand auf kleineren Bildschirmen */
    }

    .approach-image-container {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .footer-widgets {
        flex-direction: column;
        text-align: center;
    }

    .col-lg-6,
    .col-lg-3 {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .col-half {
        width: 48%;
        /* Ca. Hälfte mit etwas Abstand */
        float: left;
        /* Für Side-by-Side */
        margin-right: 4%;
    }

    .col-half:nth-child(2n) {
        margin-right: 0;
    }

    .col-quarter {
        width: 23.5%;
        /* Ca. Viertel mit etwas Abstand */
        float: left;
        margin-right: 2%;
    }

    .col-quarter:nth-child(4n) {
        margin-right: 0;
    }

    .contact-form .form-group .col-half {
        width: calc(50% - 10px);
        /* Anpassung für Gap */
        margin-right: 0;
    }

    .contact-form .form-group .col-half:nth-child(odd) {
        margin-right: 20px;
    }

    .approach-image-container {
        width: 30%;
        /* Platz für das Bild */
        float: left;
    }

    .approach-info {
        width: 70%;
        float: left;
    }

    .col-lg-6 {
        width: 48%;
        float: left;
        margin-right: 4%;
    }

    .col-lg-6:nth-child(2n) {
        margin-right: 0;
    }

    .col-lg-3 {
        width: 23.5%;
        float: left;
        margin-right: 2%;
    }

    .col-lg-3:nth-child(4n) {
        margin-right: 0;
    }

    .col-lg-7,
    .col-md-9 {
        width: auto;
        flex-grow: 1;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

/* Clearfix für float-basierte Layouts */
.row::after {
    content: "";
    display: table;
    clear: both;
}


/* New styles */

/* Infinitique section */
.infinitique-section {
    position: relative;
    background: url('images/infinitique-bg.jpg') no-repeat center center / cover;
    padding: 140px 40px;
    color: var(--color-text-light);
    overflow: hidden;
}

.infinitique-overlay {
    background: var(--color-overlay-bg);
    backdrop-filter: blur(6px);
    padding: 60px 20px;
    border-radius: 24px;
}

.infinitique-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.infinitique-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--color-accent);
}

.infinitique-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--color-text-muted);
}

.infinitique-button {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-button-text);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    margin-bottom: 60px;
    transition: all 0.3s ease;
}

.infinitique-button:hover {
    background: var(--color-accent-hover);
    transform: scale(1.05);
}

.infinitique-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.infinitique-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 20px;
    padding: 30px;
    max-width: 340px;
    flex: 1;
    box-shadow: 0 10px 25px var(--color-card-shadow);
    transition: transform 0.3s ease;
}

.infinitique-card:hover {
    transform: translateY(-10px);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-accent);
}

.card-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .infinitique-title {
        font-size: 2.5rem;
    }

    .infinitique-subtitle {
        font-size: 1.2rem;
    }

    .infinitique-cards {
        flex-direction: column;
        align-items: center;
    }

    .infinitique-card {
        width: 100%;
        max-width: 90%;
    }
}


/* Insight zone */
.insight-zone {
    background: var(--color-bg-dark);
    padding: 120px 40px;
    color: var(--color-text-light);
}

.insight-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.insight-header {
    margin-bottom: 70px;
}

.insight-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.insight-subtitle {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-text-muted);
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.insight-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--color-card-shadow);
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-12px);
}

.insight-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.insight-body {
    padding: 30px;
    text-align: left;
}

.insight-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-accent);
}

.insight-card-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .insight-title {
        font-size: 2.5rem;
    }

    .insight-subtitle {
        font-size: 1.1rem;
    }
}

/* Evozone section */
.evozone-section {
    background: var(--color-bg-dark);
    padding: 100px 40px;
    color: var(--color-text-light);
}

.evozone-container {
    max-width: 1280px;
    margin: 0 auto;
}

.evozone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    align-items: center;
}

.evozone-text-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.evozone-heading {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1.2;
}

.evozone-lead {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.evozone-paragraph {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.evozone-highlight {
    margin-top: 20px;
    padding: 20px;
    background: var(--color-card-bg);
    border-left: 4px solid var(--color-accent);
    font-size: 1rem;
    color: var(--color-accent);
}

.evozone-image-wrap {
    position: relative;
    text-align: center;
}

.evozone-image {
    width: 100%;
    height: auto;
    border: 1px solid var(--color-card-border);
    border-radius: 20px;
    box-shadow: 0 12px 30px var(--color-card-shadow);
    object-fit: cover;
}

.evozone-caption {
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .evozone-heading {
        font-size: 2.4rem;
    }

    .evozone-lead {
        font-size: 1.1rem;
    }

    .evozone-paragraph {
        font-size: 1rem;
    }
}

/* Future connect section */
.future-connect-section {
    background: var(--color-bg-dark);
    padding: 100px 40px;
    color: var(--color-text-light);
}

.future-container {
    max-width: 1280px;
    margin: 0 auto;
}

.future-header {
    text-align: center;
    margin-bottom: 60px;
}

.future-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.future-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
}

/* Kontaktformular */
.future-form form {
    background: var(--color-card-bg);
    padding: 40px;
    border-radius: 20px;
    border-left: 4px solid var(--color-accent);
    box-shadow: 0 12px 30px var(--color-card-shadow);
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: transparent;
    border: 1px solid var(--color-card-border);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--color-text-light);
    font-size: 1rem;
    outline: none;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent-hover);
}

.form-submit {
    text-align: right;
}

.form-submit button {
    background: var(--color-accent);
    color: var(--color-button-text);
    font-weight: bold;
    padding: 12px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit button:hover {
    background: var(--color-accent-hover);
    transform: scale(1.05);
}

/* Themenkarten */
.future-topics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.topic-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px var(--color-card-shadow);
    transition: transform 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-8px);
}

.topic-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.topic-card p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .future-title {
        font-size: 2.5rem;
    }

    .future-subtitle {
        font-size: 1.1rem;
    }

    .future-topics {
        grid-template-columns: 1fr;
    }
}