/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for fixed navbar */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    color: #1a1a1a;
}

h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
    color: #2d3748;
}

p {
    margin-bottom: 1rem;
    color: #4a5568;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(22, 163, 74, 0.1);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-menu-btn span:nth-child(1) {
    top: 12px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 19px;
    transition: all 0.2s ease;
}

.mobile-menu-btn span:nth-child(3) {
    top: 26px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateX(-50%) translateY(7px) rotate(45deg);
    background: #16a34a;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateX(-50%) translateY(-7px) rotate(-45deg);
    background: #16a34a;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-brand h2 {
    font-size: 1.75rem;
    color: #16a34a;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #16a34a;
}

/* Buttons */
.cta-button, .main-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.cta-button:hover, .main-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
    background: linear-gradient(135deg, #15803d 0%, #14532d 100%);
}

.main-cta.large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.page-header .lead {
    font-size: 1.25rem;
    color: #e2e8f0;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #16a34a;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #718096;
    font-size: 0.875rem;
}

.hero-features .feature i {
    color: #16a34a;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.hero-icon {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: 0 20px 40px rgba(71, 80, 96, 0.2);
    animation: float 6s ease-in-out infinite;
    border: 3px solid #16a34a;
}


@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Target Audience Section */
.target-audience-section {
    padding: 6rem 0;
    background: white;
}

.audience-subtitle {
    font-size: 1.25rem;
    color: #718096;
    text-align: center;
    margin-bottom: 4rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.audience-card {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.audience-card:hover {
    transform: translateY(-5px);
    border-color: #16a34a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.audience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 20px rgba(22, 163, 74, 0.3);
}

.audience-card h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.age-info {
    font-size: 1rem;
    color: #16a34a;
    font-weight: 600;
    margin-bottom: 1rem;
}

.audience-card p:last-child {
    color: #4a5568;
    line-height: 1.6;
}

.special-groups {
    background: linear-gradient(135deg, #fff9f8 0%, #fef5f3 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 4rem;
    border: 2px solid #ffe6df;
}

.special-groups h3 {
    font-size: 1.5rem;
    color: #16a34a;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.groups-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.group-item {
    text-align: center;
}

.group-item i {
    font-size: 2.5rem;
    color: #16a34a;
    margin-bottom: 1rem;
}

.group-item h4 {
    font-size: 1.125rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.group-item p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.875rem;
}

/* 3-Step Success System Section */
.three-step-section {
    padding: 6rem 0;
    background: #f7fafc;
}

.three-step-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 4rem;
}

.three-step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.three-step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.three-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #16a34a;
}

.step-badge {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #16a34a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(22, 163, 74, 0.3);
}

.step-label {
    background: linear-gradient(135deg, #ffe4d6 0%, #ffd6a5 100%);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #d54a1a;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.15);
}

.step-label i {
    font-size: 1.125rem;
}

.three-step-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* Link wrapper for clickable cards */
a.three-step-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.three-step-card-link:hover .three-step-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

a.three-step-card-link .three-step-card {
    cursor: pointer;
}

.three-step-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-feature {
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2d3748;
    font-weight: 500;
    border: 1px solid #cbd5e0;
}

.step-feature i {
    color: #16a34a;
    font-size: 1.125rem;
}

.three-step-cta {
    text-align: center;
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background: #fff;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #16a34a;
}

.problem-card i {
    font-size: 3rem;
    color: #16a34a;
    margin-bottom: 1rem;
}

.problem-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.problem-cta {
    text-align: center;
}

.problem-cta p {
    font-size: 1.25rem;
    color: #2d3748;
    margin-bottom: 2rem;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: white;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #16a34a;
    top: 0;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #16a34a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 10px #f7fafc;
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 45%;
    position: relative;
}

.process-step:nth-child(odd) .step-content {
    margin-left: auto;
}

.process-step:nth-child(even) .step-content {
    margin-right: auto;
}

.step-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: #16a34a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step:nth-child(even) .step-icon {
    right: auto;
    left: -10px;
}

.process-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Process Details Styles */
.test-details, .observation-details, .usage-details {
    margin-top: 1rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 10px;
    font-size: 0.9rem;
}

.test-details p, .observation-details p, .usage-details p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.observation-details ul, .usage-details ul {
    list-style: none;
    padding-left: 0;
}

.observation-details li, .usage-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.observation-details li::before, .usage-details li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.example-box {
    background: white;
    border: 2px solid #16a34a;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.example-code {
    font-family: monospace;
    font-size: 1rem;
    color: #16a34a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-info {
    background: #e6fffa;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    color: #065f46;
}

.timeline-info i {
    color: #10b981;
    margin-right: 0.5rem;
}

/* Quality Promise Section */
.quality-promise-section {
    padding: 6rem 0;
    background: white;
}

.quality-subtitle {
    font-size: 1.25rem;
    color: #718096;
    text-align: center;
    margin-bottom: 4rem;
}

.quality-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.quality-pillar {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quality-pillar:hover {
    transform: translateY(-5px);
    border-color: #16a34a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 20px rgba(22, 163, 74, 0.3);
}

.quality-pillar h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.quality-pillar > p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.quality-pillar ul {
    list-style: none;
    padding: 0;
}

.quality-pillar li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #718096;
    font-size: 0.875rem;
    line-height: 1.5;
}

.quality-pillar li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: #f7fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: white;
    border-color: #16a34a;
}

.benefit-card i {
    font-size: 3rem;
    color: #16a34a;
    margin-bottom: 1rem;
}

/* Target Section */
.target-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.target-section h2 {
    color: #1f2937;
}

.target-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.target-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.target-item i {
    font-size: 2rem;
    color: #16a34a;
    margin-top: 0.5rem;
}

.target-item h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.target-item p {
    color: #6b7280;
}

.cta-box {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.cta-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-box .main-cta {
    background: white;
    color: #16a34a;
}

.cta-box .main-cta:hover {
    background: #f7fafc;
}

/* Trust Section */
.trust-section {
    padding: 6rem 0;
    background: #f7fafc;
}

.trust-story {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.trust-lead {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

.trust-lead strong {
    color: #1a1a1a;
}

.trust-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trust-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #f7fafc;
    transition: border-color 0.3s ease;
}

.trust-item:hover {
    border-color: #16a34a;
}

.trust-item i {
    font-size: 3rem;
    color: #16a34a;
    margin-bottom: 1rem;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.final-cta p {
    color: #a0aec0;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.cta-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a0aec0;
}

.cta-features .feature i {
    color: #48bb78;
}

/* About Page Styles */
.about-intro {
    padding: 8rem 0 6rem;
    background: white;
}

.about-intro-full {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro-full h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.intro-subtitle {
    font-size: 1.25rem;
    color: #16a34a;
    font-weight: 600;
    margin-bottom: 3rem;
}

.intro-text {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-description, .team-approach {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-images-center {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
}

.team-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 4px solid #fff;
    transition: transform 0.3s ease;
}

.team-image:hover {
    transform: scale(1.05);
}

/* About Purpose Section */
.about-purpose {
    padding: 6rem 0;
    background: #f7fafc;
}

.purpose-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.purpose-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.purpose-subtitle {
    font-size: 1.25rem;
    color: #718096;
    font-weight: 500;
    margin-bottom: 4rem;
}

.purpose-story {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    position: relative;
}

.story-badge {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(22, 163, 74, 0.3);
}

.story-badge i {
    font-size: 1.75rem;
    color: white;
}

.story-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: left;
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.purpose-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.purpose-card:hover {
    transform: translateY(-5px);
    border-color: #16a34a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.purpose-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid #16a34a;
}

.purpose-icon i {
    font-size: 1.5rem;
    color: #16a34a;
}

.purpose-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.purpose-card p {
    color: #4a5568;
    line-height: 1.7;
}

.purpose-impact {
    background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(71, 80, 96, 0.2);
}

.purpose-impact p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 0;
    color: white;
}

/* About Team Section */
.about-team {
    padding: 6rem 0;
    background: white;
}

.team-intro {
    text-align: center;
    color: #4a5568;
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #718096;
    font-size: 0.875rem;
}

/* About Philosophy Section */
.about-philosophy {
    padding: 6rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #16a34a;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.value-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.value-card ul {
    list-style: none;
    padding: 0;
}

.value-card ul li {
    color: #718096;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.value-card ul li::before {
    content: "•";
    color: #16a34a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* About Partners Section */
.about-partners {
    padding: 6rem 0;
    background: #f7fafc;
}

.partners-intro {
    text-align: center;
    color: #4a5568;
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.partner-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.partner-logo img {
    max-height: 100%;
    max-width: 200px;
    object-fit: contain;
}

.partner-item h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.partner-item p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partner-link {
    color: #16a34a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.partner-link:hover {
    color: #15803d;
    text-decoration: underline;
}

/* About Contact Section */
.about-contact {
    padding: 6rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-box {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

.contact-box h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-box p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.email-link {
    color: #16a34a;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #15803d;
    text-decoration: underline;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
    background: linear-gradient(135deg, #15803d 0%, #14532d 100%);
}

.address-info {
    color: #4a5568;
    line-height: 1.8;
}

/* Scientific Foundation Section */
.scientific-section {
    padding: 6rem 0;
    background: #f7fafc;
}

.scientific-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #718096;
    margin-bottom: 4rem;
}

.scientific-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pillar-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pillar-icon i {
    font-size: 2rem;
    color: white;
}

.pillar-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.pillar-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pillar-card ul {
    list-style: none;
    padding: 0;
}

.pillar-card li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #4a5568;
    font-size: 0.875rem;
    line-height: 1.6;
}

.pillar-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.lehrplan-example {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.example-label {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 0.5rem !important;
}

.example-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.example-content code {
    background: #16a34a;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    white-space: nowrap;
}

.example-content p {
    margin: 0 !important;
    font-size: 0.875rem;
}

.quality-list {
    margin-top: 1rem;
    list-style: none;
    padding: 0;
}

.quality-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-size: 0.875rem;
    font-style: italic;
}

.quality-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

/* Strength-Based Approach Section */
.strength-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff9f8 0%, #fef5f3 100%);
}

.strength-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #16a34a;
    margin-bottom: 4rem;
    font-weight: 500;
}

.strength-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.strength-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.strength-icon i {
    font-size: 2.5rem;
    color: white;
}

.strength-left h3 {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.strength-left > p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.experience-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.experience-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.experience-item i {
    color: #16a34a;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.experience-item h4 {
    font-size: 1.125rem;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.experience-item p {
    color: #718096;
    font-size: 0.875rem;
    line-height: 1.6;
}

.quote-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(22, 163, 74, 0.1);
    position: relative;
    margin-bottom: 2rem;
}

.quote-box i {
    font-size: 2rem;
    color: #ffe6df;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.quote-box p {
    font-size: 1.125rem;
    font-style: italic;
    color: #4a5568;
    line-height: 1.8;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.quote-box cite {
    display: block;
    text-align: right;
    color: #16a34a;
    font-size: 0.875rem;
    font-weight: 500;
}

.ethics-points {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #ffe6df;
}

.ethics-points h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.ethics-points ul {
    list-style: none;
    padding: 0;
}

.ethics-points li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-size: 0.875rem;
    line-height: 1.6;
}

.ethics-points li::before {
    content: "♥";
    position: absolute;
    left: 0;
    color: #16a34a;
}

/* Mini Team Section */
.mini-team-section {
    padding: 8rem 0 6rem;
    background: white;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.team-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #718096;
    margin-bottom: 3rem;
}

.mini-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.expert-card {
    text-align: center;
    padding: 2rem;
}

.expert-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.expert-image:hover {
    transform: scale(1.05);
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-card h3 {
    font-size: 1.375rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.expert-role {
    color: #16a34a;
    font-weight: 500;
    margin-bottom: 1rem;
}

.expert-desc {
    color: #718096;
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

.team-trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #fff9f8 0%, #fef5f3 100%);
    padding: 1.5rem 2rem;
    border-radius: 50px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(22, 163, 74, 0.1);
}

.team-trust-badge i {
    font-size: 1.5rem;
    color: #16a34a;
}

.team-trust-badge p {
    font-weight: 500;
    color: #4a5568;
    margin: 0;
}

/* Process Section Enhancements */
.test-details {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.test-details p {
    margin-bottom: 1rem;
}

.example-box {
    background: white;
    border: 2px solid #16a34a;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.example-code {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #16a34a;
    margin-bottom: 0.5rem !important;
}

.observation-details {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.observation-details ul {
    list-style: none;
    padding: 0;
}

.observation-details li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.observation-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.usage-details {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.usage-details p {
    margin-bottom: 1rem;
}

.usage-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.usage-details li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.usage-details li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.timeline-info {
    background: #fff9f8;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-left: 3px solid #16a34a;
    margin-top: 1rem;
    color: #4a5568;
}

.timeline-info i {
    color: #16a34a;
    margin-right: 0.5rem;
}

/* Lehrplan Quality Section */
.lehrplan-quality-section {
    padding: 6rem 0;
    background: white;
}

.quality-intro {
    text-align: center;
    font-size: 1.25rem;
    color: #16a34a;
    margin-bottom: 4rem;
    font-weight: 500;
}

.quality-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    .quality-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    /* Entferne die order-Regeln, damit die natürliche Reihenfolge beibehalten wird */
}

.quality-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.quality-badge i {
    font-size: 1.25rem;
}

.quality-text h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.lead-text {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.process-explanation {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.process-explanation h4 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.development-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dev-step {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.dev-step .step-number {
    width: 30px;
    height: 30px;
    background: #16a34a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.dev-step .step-content h5 {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.dev-step .step-content p {
    font-size: 0.875rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

.dev-step .step-content code {
    background: #ffe6df;
    color: #16a34a;
    padding: 0.125rem 0.375rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

.quality-impact {
    margin-bottom: 2rem;
}

.quality-impact h4 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.impact-points {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.impact-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.impact-item i {
    color: #48bb78;
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.impact-item strong {
    display: block;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.impact-item p {
    font-size: 0.875rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

.quality-promise {
    background: linear-gradient(135deg, #fff9f8 0%, #fef5f3 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #16a34a;
    position: relative;
}

.quality-promise i {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #ffe6df;
    font-size: 2rem;
}

.quality-promise p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
    padding-left: 2rem;
}

.quality-visual {
    position: sticky;
    top: 100px;
}

.image-placeholder {
    background: #f7fafc;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quality-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    padding: 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: #718096;
    font-style: italic;
    margin: 0;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.visual-highlight {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-box {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.highlight-box h5 {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.time-visual {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.time-visual i {
    color: #16a34a;
    font-size: 1.5rem;
}

.time-amount {
    font-size: 1.75rem;
    font-weight: bold;
    color: #1a1a1a;
}

.highlight-box p {
    font-size: 0.875rem;
    color: #718096;
    margin: 0;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-box li {
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #4a5568;
    line-height: 1.5;
}

.highlight-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: #f7fafc;
}

.faq-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #718096;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #fef5f3;
}

.faq-question h3 {
    font-size: 1.125rem;
    color: #1a1a1a;
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: #16a34a;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.faq-answer li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #4a5568;
    line-height: 1.6;
}

.faq-answer li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.faq-expandable {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.3s ease;
}

.faq-expandable.expanded {
    max-height: 5000px;
    opacity: 1;
}

.faq-toggle-btn {
    margin: 2rem auto 0;
    background: #16a34a;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.faq-toggle-btn:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(22, 163, 74, 0.3);
}

.faq-toggle-btn i {
    transition: transform 0.3s ease;
}

.faq-toggle-btn.expanded i {
    transform: rotate(180deg);
}

/* Resources Center Section */
.resources-section {
    padding: 6rem 0 8rem 0;
    background: white;
}

/* Resources Search */
.resources-search {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.search-container i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
}

.search-input {
    width: 100%;
    padding: 0.875rem 1.25rem 0.875rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.search-input:focus {
    outline: none;
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.search-input::placeholder {
    color: #9ca3af;
}

/* Resources Filter */
.resources-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: white;
    border: 2px solid #e5e7eb;
    color: #6b7280;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    border-color: #16a34a;
    color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
}

.filter-btn.active {
    background: #16a34a;
    color: white;
    border-color: #16a34a;
}

.filter-btn i {
    font-size: 1rem;
}

.resources-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #718096;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.resource-card {
    background: #f7fafc;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #16a34a;
    background: white;
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.resource-icon i {
    font-size: 1.75rem;
    color: white;
}

.resource-card h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.resource-card p {
    color: #718096;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.resource-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.resource-type {
    font-size: 0.75rem;
    color: #16a34a;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.resource-size {
    font-size: 0.75rem;
    color: #a0aec0;
}

.resource-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: white;
    color: #16a34a;
    border: 2px solid #16a34a;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.resource-download:hover {
    background: #16a34a;
    color: white;
    transform: scale(1.02);
}

.resource-download i {
    font-size: 1rem;
}

.resources-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.resources-footer p {
    color: #718096;
    font-size: 0.875rem;
    margin: 0;
}

.resources-footer i {
    color: #16a34a;
    margin-right: 0.5rem;
}

/* Removed expandable container - all cards now in single grid */

.resources-toggle-btn {
    margin: 2rem auto 0;
    background: #16a34a;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.resources-toggle-btn:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(22, 163, 74, 0.3);
}

.resources-toggle-btn i {
    transition: transform 0.3s ease;
}

.resources-toggle-btn.expanded i {
    transform: rotate(180deg);
}

/* Partner Logos Section */
.partner-logos-section {
    padding: 4rem 0;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.partners-title {
    text-align: center;
    font-size: 0.875rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.partner-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.partner-logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner-logo-item img {
    max-height: 100%;
    max-width: 150px;
    object-fit: contain;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #16a34a;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #a0aec0;
    margin-bottom: 0.5rem;
}

.footer-section p i {
    color: #16a34a;
    margin-right: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #16a34a;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #718096;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 100px; /* More offset for mobile */
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Navigation */
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 60px 0 15px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transform: translateY(-120%);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        opacity: 0;
        visibility: hidden;
        border-radius: 0 0 20px 20px;
        overflow: hidden;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 0.8rem 2rem;
        border-bottom: 1px solid #f3f4f6;
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        font-size: 1rem;
    }
    
    .nav-menu .nav-link:hover {
        background: #fff7ed;
        color: #16a34a;
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-menu .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 3px;
        background: #16a34a;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu .nav-link:hover::before {
        transform: translateX(0);
    }
    
    .nav-menu .cta-button {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-icon {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .step-number {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .step-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .process-step:nth-child(even) {
        flex-direction: row;
    }
    
    .step-icon {
        right: -10px !important;
        left: auto !important;
    }
    
    .quality-pillars {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .target-content {
        grid-template-columns: 1fr;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .groups-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .three-step-grid {
        grid-template-columns: 1fr;
    }
    
    .three-step-card {
        margin-top: 2rem;
    }
    
    .step-badge {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* About Page Responsive */
    .about-images-center {
        flex-direction: column;
        align-items: center;
    }
    
    .team-image {
        width: 150px;
        height: 150px;
    }
    
    .purpose-grid {
        grid-template-columns: 1fr;
    }
    
    .purpose-story {
        padding: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .main-cta {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .main-cta.large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .process-step {
        margin-bottom: 3rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .cta-box {
        padding: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.8s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Test Examples Gallery Styles */
.test-examples-gallery {
    max-width: 800px;
    margin: 0 auto;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-tab {
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-tab:hover {
    background: #e5e7eb;
    color: #1a1a1a;
}

.gallery-tab.active {
    background: #16a34a;
    color: white;
    border-color: #16a34a;
}

/* iPad Frame Styles */
.device-frame {
    position: relative;
    margin: 0 auto;
    max-width: 600px;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.ipad-frame {
    aspect-ratio: 4/3;
}

.device-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: #333;
    border-radius: 10px;
}

.device-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.example-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: white;
}

.example-image.active {
    opacity: 1;
}

/* Gallery content for ablauf page */
.gallery-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-content .example-content {
    display: none;
    width: 100%;
    height: 100%;
}

.gallery-content .example-content.active {
    display: block;
}

.gallery-content .example-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-tab {
        width: 250px;
        text-align: center;
    }
    
    .device-frame {
        padding: 15px;
    }
}

/* Process Section Test Preview */
.test-preview {
    margin: 2rem 0;
    text-align: center;
}

.tablet-frame {
    max-width: 500px;
    aspect-ratio: 16/10;
}

.test-example-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
}

.preview-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

/* Add animation on scroll */
.test-preview {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.test-preview.loading {
    opacity: 1;
    transform: translateY(0);
}

/* Adjust step content to accommodate image */
.process-step .step-content {
    position: relative;
}

@media (max-width: 768px) {
    .test-preview {
        margin: 1.5rem 0;
    }
    
    .tablet-frame {
        max-width: 100%;
    }
}

/* Fokus Badge in Hero Section */
.fokus-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
}

.fokus-badge-logo {
    height: 30px;
    width: auto;
}

.fokus-badge-text {
    font-size: 0.9rem;
    color: #16a34a;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Trust Bar Section */
.trust-bar {
    background: #f8f9fa;
    padding: 1.5rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.trust-bar .trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #4b5563;
}

.trust-bar .trust-item i {
    color: #16a34a;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.trust-bar .trust-item strong {
    color: #1a1a1a;
}

/* Navigation correction */
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Fokus Group Section - New Design */
.fokus-group-section {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.fokus-group-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.fokus-group-header {
    text-align: center;
    margin-bottom: 4rem;
}

.fokus-group-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.fokus-group-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

.fokus-ecosystem {
    max-width: 1200px;
    margin: 0 auto;
}

.ecosystem-center {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.center-logo img {
    height: 100px;
    width: auto;
}

.center-info h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.center-info p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 2rem;
    color: #16a34a;
    margin-bottom: 0.25rem;
}

.stat span {
    font-size: 0.875rem;
    color: #6b7280;
}

.ecosystem-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: #16a34a;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.15);
}

.service-card.active {
    background: #16a34a;
    color: white;
    border-color: #16a34a;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #16a34a;
}

.service-card.active .service-icon {
    background: white;
    color: #16a34a;
}

.service-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-card p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.service-card.active p {
    color: rgba(255, 255, 255, 0.9);
}

.service-tag {
    position: absolute;
    top: -10px;
    right: 20px;
    background: white;
    color: #16a34a;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hero Features Minimal - Dezente Badge-Leiste */
.hero-features-minimal {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #6b7280;
    letter-spacing: 0.01em;
}

.feature-text {
    color: #6b7280;
    transition: color 0.2s ease;
}

.feature-text:hover {
    color: #4b5563;
}

.feature-dot {
    margin: 0 0.5rem;
    color: #d1d5db;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fokus-badge {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .hero-features-minimal {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .feature-dot {
        display: none;
    }
    
    /* Hero Section Mobile Optimierungen */
    .hero {
        padding: 8.5rem 0 2rem; /* Noch mehr padding oben für navbar */
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-visual {
        order: -1; /* Bild nach oben */
        margin-bottom: 1rem;
        margin-top: 1.5rem; /* Mehr Abstand nach oben */
        max-width: 100%;
        height: 200px; /* Etwas mehr Höhe */
        overflow: hidden;
        border-radius: 15px;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 15px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
        color: #16a34a;
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        display: none; /* Beschreibung ausblenden für Mobile */
    }
    
    .main-cta {
        font-size: 1rem;
        padding: 1rem 2rem;
        margin-top: 0.5rem;
        display: inline-block;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-features-minimal {
        display: none; /* Features für Mobile ausblenden */
    }
    
    .trust-bar .trust-items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .main-brand-link {
        flex-direction: column;
        text-align: center;
    }
}

/* Zusätzliche Styles für die optimierte 3-Schritte Section */
.package-type {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.plus-concept {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #10b981;
    margin-top: 1rem;
    font-weight: 500;
}

.plus-concept i {
    font-size: 1rem;
}

.included-items {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    font-size: 0.875rem;
}

.included-items li {
    padding: 0.5rem 0;
    border-top: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.included-items li:first-child {
    border-top: none;
}

.included-items i {
    color: #10b981;
    font-size: 0.875rem;
}

/* Responsive adjustments für included-items */
@media (max-width: 768px) {
    .included-items {
        font-size: 0.8rem;
    }
    
    .ecosystem-center {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
}

/* Strength-Based Approach Section - Kompakte Version */
.strength-section-compact {
    padding: 4rem 0;
    background: white;
}

.strength-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.strength-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.strength-intro {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
}

.strength-intro strong {
    color: #16a34a;
}

.strength-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.strength-point {
    text-align: center;
    padding: 2rem;
}

.strength-point-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #ffedd5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.strength-point-icon i {
    font-size: 2.5rem;
    color: #16a34a;
}

.strength-point:hover .strength-point-icon {
    transform: scale(1.1);
    background: #16a34a;
}

.strength-point:hover .strength-point-icon i {
    color: white;
}

.strength-point h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.strength-point p {
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .strength-points-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .strength-point {
        padding: 1.5rem;
    }
    
    .stats {
        gap: 2rem;
    }
    
    .ecosystem-services {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Wissenschaftlich fundiert Section Mobile */
    .scientific-pillars {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pillar-card {
        padding: 1.5rem;
    }
    
    .pillar-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .pillar-icon i {
        font-size: 1.75rem;
    }
    
    .pillar-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .pillar-card p {
        font-size: 0.875rem;
    }
    
    .pillar-card ul {
        font-size: 0.8rem;
    }
    
    /* Page Header Mobile - für Ablauf Seite */
    .page-header {
        padding: 7rem 0 3rem; /* Mehr Platz oben für fixed navbar */
    }
    
    /* Three Step Section Mobile - erste Section auf Ablauf */
    .three-step-section[style*="padding-top: 120px"] {
        padding-top: 180px !important; /* Weniger padding für Mobile */
    }
    
    /* Mini Team Section Mobile - erste Section auf Über uns */
    .mini-team-section {
        padding: 10rem 0 4rem; /* Mehr Platz oben für fixed navbar */
    }
    
    /* Process Explanation Mobile - So entsteht eine Testaufgabe */
    .process-explanation {
        padding: 2rem 1rem !important;
        margin: 2rem 0 !important;
        border-radius: 12px !important;
        background: #f8fafc !important;
        border: 1px solid #e5e7eb;
    }
    
    .process-explanation h4 {
        font-size: 1.25rem !important;
        margin-bottom: 2rem !important;
        text-align: center;
        color: #16a34a;
        font-weight: 600;
    }
    
    .development-steps {
        gap: 2rem !important;
        margin: 0 !important;
    }
    
    .dev-step {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 1rem !important;
        padding: 1.5rem !important;
        background: white !important;
        border-radius: 12px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    }
    
    .dev-step .step-number {
        min-width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
        background: #16a34a !important;
        color: white !important;
        border: none !important;
    }
    
    .dev-step .step-content {
        text-align: center !important;
    }
    
    .dev-step h5 {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
        color: #1a1a1a;
    }
    
    .dev-step p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        color: #6b7280;
    }
    
    .dev-step code {
        font-size: 0.8rem !important;
        padding: 0.2rem 0.4rem !important;
        background: #fee2e2;
        border-radius: 4px;
        color: #dc2626;
        font-weight: 600;
    }
    
    /* Gallery Tabs Mobile */
    .gallery-tabs {
        flex-direction: column !important;
        gap: 0.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .gallery-tab {
        width: 100% !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
        border-radius: 8px !important;
    }
    
    /* Test Examples Gallery Mobile */
    .test-examples-gallery {
        padding: 0 !important;
    }
    
    /* Device Frame Mobile */
    .device-frame.ipad-frame {
        max-width: 300px !important;
        margin: 0 auto !important;
        padding: 12px !important;
        background: #1f2937 !important;
        border-radius: 20px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    }
    
    .device-screen {
        border-radius: 12px !important;
        overflow: hidden;
        background: white;
    }
    
    .test-example-container {
        padding: 0 !important;
    }
    
    .test-example-img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Quality Visual Section Mobile */
    .quality-visual {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Unique Value Section Mobile */
    div[style*="background: linear-gradient(135deg, #fff7ed"] {
        padding: 2rem 1.5rem !important;
        margin-top: 2rem !important;
    }
    
    div[style*="text-align: center; margin-bottom: 2.5rem"] h3 {
        font-size: 1.5rem !important;
    }
    
    div[style*="text-align: center; margin-bottom: 2.5rem"] p {
        font-size: 1rem !important;
        padding: 0 1rem !important;
    }
    
    /* Icon Cards in Unique Value Section */
    div[style*="display: grid; grid-template-columns: repeat(auto-fit"] {
        gap: 1.5rem !important;
    }
    
    div[style*="background: white; padding: 2rem; border-radius: 12px"] {
        padding: 1.5rem !important;
    }
    
    div[style*="width: 60px; height: 60px; background: #16a34a"] {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
    }
    
    div[style*="background: white; padding: 2rem; border-radius: 12px"] h4 {
        font-size: 1.1rem !important;
    }
    
    div[style*="background: white; padding: 2rem; border-radius: 12px"] p {
        font-size: 0.875rem !important;
    }
    
    /* Process Step anpassen für Mobile */
    .process-step {
        flex-direction: column !important;
        text-align: center;
    }
    
    .step-icon {
        order: -1;
        margin-bottom: 1rem !important;
        margin-left: 0 !important;
    }
    
    /* Test Preview bei Punkt 2 auf Mobile ausblenden */
    .process-step .test-preview {
        display: none !important;
    }
    
    /* Benefits Section - Orange Header höhe reduzieren */
    div[style*="background: #16a34a; color: white; padding: 1.5rem"] {
        padding: 1rem !important;
    }
    
    div[style*="background: #16a34a; color: white; padding: 1.5rem"] i {
        font-size: 1.5rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    div[style*="background: #16a34a; color: white; padding: 1.5rem"] h3 {
        font-size: 1.1rem !important;
    }
}

/* Team Intro Text */
.team-intro-text {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.team-intro-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.team-intro-text strong {
    color: #1a1a1a;
}

/* Experts Cards Horizontal */
.experts-cards-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.expert-card-horizontal {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 2rem;
    align-items: center;
    border: 1px solid #e5e7eb;
}

.expert-card-horizontal .expert-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
}

.expert-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.expert-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.stage-indicator {
    display: inline-block;
    background: #ffedd5;
    color: #16a34a;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    /* Team Section Mobile - Reihenfolge ändern */
    .mini-team-section .container {
        display: flex;
        flex-direction: column;
    }
    
    .mini-team-section h2 {
        order: 1;
    }
    
    .mini-team-section .team-subtitle {
        order: 2;
    }
    
    .mini-team-section .experts-cards-horizontal {
        order: 3;
        margin-bottom: 2rem;
    }
    
    .mini-team-section .team-intro-text {
        order: 4;
    }
    
    .experts-cards-horizontal {
        grid-template-columns: 1fr;
    }
    
    .expert-card-horizontal {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .expert-card-horizontal .expert-image {
        margin: 0 auto;
    }
    
    /* Partner Section Mobile Anpassungen */
    section[style*="padding: 3rem 0 2rem 0"] {
        padding: 2rem 0 1.5rem 0 !important;
    }
    
    section[style*="padding: 3rem 0 2rem 0"] h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    section[style*="padding: 3rem 0 2rem 0"] > .container > p {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    /* Partner Box Mobile */
    div[style*="background: linear-gradient(to right, #fff7ed"] {
        padding: 1.5rem !important;
    }
    
    div[style*="display: grid; grid-template-columns: 1fr 2fr"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    div[style*="display: grid; grid-template-columns: 1fr 2fr"] h3 {
        font-size: 1.25rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    div[style*="display: grid; grid-template-columns: 1fr 2fr"] p {
        font-size: 0.875rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Partner Cards */
    div[style*="display: flex; gap: 1.5rem; align-items: center"] {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: flex-start !important;
    }
    
    div[style*="display: flex; gap: 1.5rem; align-items: center"] img {
        width: 60px !important;
        height: 45px !important;
    }
    
    div[style*="background: #f8f9fa; padding: 1rem"] {
        padding: 0.75rem !important;
        width: 100% !important;
    }
    
    div[style*="background: #f8f9fa; padding: 1rem"] h4 {
        font-size: 0.9rem !important;
    }
    
    div[style*="background: #f8f9fa; padding: 1rem"] p {
        font-size: 0.75rem !important;
    }
    
    div[style*="display: flex; gap: 1.5rem; font-size: 0.8rem"] {
        flex-direction: column !important;
        gap: 0.5rem !important;
        font-size: 0.7rem !important;
    }
}