/* Logout.Team Complete Static HTML CSS */

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

:root {
    --deep-blue: #1e3a8a;
    --turquoise: #06b6d4;
    --green: #10b981;
    --light-blue: #e0f2fe;
    --dark-gray: #1f2937;
    --light-gray: #f3f4f6;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--deep-blue);
    letter-spacing: -0.5px;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    font-family: inherit;
}

.lang-btn:hover {
    background: var(--light-blue);
}

.lang-btn.active {
    background: var(--deep-blue);
    color: white;
    border-color: var(--deep-blue);
}

/* Hero Section - NO BLUE FILTER */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/homepage_hintergrund_strand.webp') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 80px 20px 40px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--turquoise);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
    font-family: inherit;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.6);
    background: #0891b2;
}

.logo-button {
    margin-top: 3rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.logo-button:hover {
    transform: scale(1.05);
}

.logo-button img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

/* Problem Section */
.problem-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--deep-blue);
}

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

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.problem-icon {
    font-size: 3rem;
    color: var(--turquoise);
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
}

.problem-image {
    text-align: center;
    margin: 3rem 0;
}

.problem-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.problem-transition {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto;
}

.problem-transition h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

.problem-transition p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.solution-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--turquoise);
    margin-top: 2rem;
}

/* Two Worlds Section */
.two-worlds-section {
    padding: 80px 20px;
    background: white;
}

.two-worlds-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.world-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.world-card.local {
    border-left: 5px solid #ef4444;
}

.world-card.international {
    border-left: 5px solid var(--green);
}

.world-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--deep-blue);
}

.world-card ul {
    list-style: none;
}

.world-card ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.world-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    color: var(--turquoise);
}

.world-image img {
    max-width: 300px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.two-worlds-question {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto;
}

.two-worlds-question h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

/* Mission Section */
.mission-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

.mission-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
}

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

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-icon {
    font-size: 3rem;
    color: var(--turquoise);
    margin-bottom: 1rem;
}

.mission-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
}

.mission-impact {
    text-align: center;
    margin-top: 3rem;
}

.mission-impact img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.impact-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

/* Freedom Section */
.freedom-section {
    padding: 80px 20px;
    background: white;
}

.freedom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.freedom-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.freedom-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--turquoise);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
}

.freedom-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
    margin-top: 1rem;
}

.freedom-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--turquoise);
}

.freedom-card ul {
    list-style: none;
    margin: 1rem 0;
}

.freedom-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.freedom-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 800;
}

.freedom-cta {
    font-weight: 600;
    color: var(--turquoise);
    margin-top: 1rem;
}

.freedom-image {
    text-align: center;
    margin-top: 3rem;
}

.freedom-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Audience Section */
.audience-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

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

.audience-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-icon {
    font-size: 3.5rem;
    color: var(--turquoise);
    margin-bottom: 1.5rem;
}

.audience-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

/* Solutions Section */
.solutions-section {
    padding: 80px 20px;
    background: white;
}

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

.solution-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-icon {
    font-size: 3.5rem;
    color: var(--turquoise);
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

/* Process Section */
.process-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

.process-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--turquoise);
    margin-bottom: 3rem;
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--turquoise);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
    text-align: center;
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--turquoise);
    text-align: center;
}

.process-step ul {
    list-style: none;
}

.process-step ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.process-step ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--turquoise);
    font-weight: 800;
}

.process-arrow {
    font-size: 3rem;
    color: var(--turquoise);
    align-self: center;
    display: none;
}

@media (min-width: 1024px) {
    .process-arrow {
        display: block;
    }
}

/* Success Stories Section */
.success-section {
    padding: 80px 20px;
    background: white;
}

.success-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--turquoise);
    margin-bottom: 3rem;
}

.story-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.story-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--deep-blue);
}

.story-location {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--turquoise);
}

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

.story-section {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
}

.story-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--deep-blue);
}

/* Team Section */
.team-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

.team-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--turquoise);
    margin-bottom: 3rem;
}

.team-network {
    position: relative;
    max-width: 900px;
    margin: 0 auto 3rem;
    min-height: 500px;
}

.team-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.team-center-circle {
    width: 200px;
    height: 200px;
    background: var(--turquoise);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
    padding: 1rem;
}

.team-experts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.expert-node {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.expert-node i {
    font-size: 2.5rem;
    color: var(--turquoise);
    margin-bottom: 1rem;
}

.expert-node h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
}

.expert-node p {
    font-size: 0.9rem;
    color: #6b7280;
}

.team-statement {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto;
}

.team-statement h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

.team-promise {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--turquoise);
    margin-top: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--deep-blue), var(--turquoise));
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-button-large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    background: white;
    color: var(--deep-blue);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    font-family: inherit;
}

.cta-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.cta-website {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
}

.cta-tagline {
    font-size: 1.1rem;
    margin-top: 1rem;
    opacity: 0.9;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    cursor: pointer;
    transition: color 0.3s;
}

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

.modal-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--turquoise);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.submit-button:hover {
    background: #0891b2;
    transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 1.5rem;
    z-index: 1500;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2.5rem;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
}

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

.cookie-decline,
.cookie-accept {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.cookie-decline {
    background: var(--light-gray);
    color: var(--dark-gray);
}

.cookie-decline:hover {
    background: #d1d5db;
}

.cookie-accept {
    background: var(--turquoise);
    color: white;
}

.cookie-accept:hover {
    background: #0891b2;
}

/* SEO Content - Hidden but crawlable */
.seo-content {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 1024px) {
    .two-worlds-grid {
        grid-template-columns: 1fr;
    }
    
    .world-image {
        order: -1;
        text-align: center;
    }
    
    .process-timeline {
        flex-direction: column;
    }
    
    .team-network {
        position: static;
        min-height: auto;
    }
    
    .team-center {
        position: static;
        transform: none;
        margin-bottom: 3rem;
    }
    
    .team-center-circle {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .language-switcher {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .problem-grid,
    .mission-grid,
    .freedom-grid,
    .audience-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .team-experts {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .modal-content {
        margin: 10% 20px;
        padding: 2rem;
    }
}

/* Solution with Logo (Problem Section) */
.solution-with-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.solution-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue);
}

.logo-button-small {
    cursor: pointer;
    transition: transform 0.3s;
}

.logo-button-small:hover {
    transform: scale(1.05);
}

.logo-button-small img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

/* Freedom Section - 2 Column Layout */
.freedom-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 968px) {
    .freedom-grid-2col {
        grid-template-columns: 1fr;
    }
}

.freedom-icon {
    width: 80px;
    height: 80px;
    background: var(--turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.freedom-image {
    text-align: center;
    margin-top: 3rem;
}

.freedom-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Our Story Card */
.story-card.our-story {
    background: linear-gradient(135deg, var(--deep-blue), var(--turquoise));
    color: white;
}

.story-card.our-story .story-header h3 {
    color: white;
}

.story-content-full {
    padding: 1.5rem 0;
}

.story-content-full p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
}

/* Team Image */
.team-image {
    text-align: center;
    margin-top: 3rem;
}

.team-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* CTA Section - Beach Background */
.cta-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/strand_mit_palmen_2_liegestuehle.webp') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.7);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.logo-button-cta {
    margin: 2rem auto;
    cursor: pointer;
    transition: transform 0.3s;
}

.logo-button-cta:hover {
    transform: scale(1.05);
}

.logo-button-cta img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.cta-website {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
}

.cta-tagline {
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 1rem;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .solution-with-logo {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo-button-small img {
        width: 100px;
        height: 100px;
    }
    
    .freedom-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Success Stories - New Layout with Columns */
.story-content-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

.story-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.story-column ul {
    list-style: none;
    padding: 0;
}

.story-column ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.story-column ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--turquoise);
    font-weight: bold;
}

.story-transformation {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-blue);
}

.story-transformation h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.transformation-quote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.transformation-results {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.transformation-results span {
    background: var(--light-blue);
    color: var(--deep-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Our Story Styling */
.our-story-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-top: 0.5rem;
}

.our-story-quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.our-story-signature {
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    text-align: right;
}

.our-story-points {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.our-story-points span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

/* Team Network Image */
.team-network-image {
    text-align: center;
    margin: 3rem 0;
    background: var(--light-blue);
    padding: 2rem;
    border-radius: 12px;
}

.team-network-image img {
    max-width: 100%;
    height: auto;
}

/* CTA Section - NO BLUE FILTER */
.cta-section-no-filter {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/strand_mit_palmen_2_liegestuehle.webp') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

/* NO overlay/filter for this section */

.cta-section-no-filter .cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cta-section-no-filter .cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta-section-no-filter .cta-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-button-large {
    background: var(--green);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .story-content-columns {
        grid-template-columns: 1fr;
    }
    
    .transformation-results {
        flex-direction: column;
    }
    
    .cta-section-no-filter .cta-title {
        font-size: 2rem;
    }
}

/* Team Network Graphic - HTML/CSS Version */
.team-network-graphic {
    max-width: 800px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border: 3px solid var(--deep-blue);
    border-radius: 16px;
    position: relative;
}

.team-center-node {
    text-align: center;
    margin-bottom: 3rem;
}

.team-center-circle {
    width: 120px;
    height: 120px;
    background: var(--deep-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.team-center-circle i {
    font-size: 3rem;
    color: white;
}

.team-center-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--deep-blue);
    text-transform: uppercase;
    line-height: 1.3;
}

.team-experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.expert-node {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.expert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.expert-icon i {
    font-size: 2rem;
    color: var(--deep-blue);
}

.expert-node h4 {
    f