/* Arbeitsweise Styles */
.method-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.method-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.method-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 4rem;
}

.method-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.method-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(227, 30, 104, 0.15);
}

.method-icon {
    width: 100%;
    height: 160px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon i {
    font-size: 3rem;
    color: var(--primary);
}

.method-content {
    padding: 2rem;
}

.method-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.method-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.method-list li {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.method-list li::before {
    content: '•';
    color: var(--primary);
    font-size: 1.2em;
}

.why-me {
    background: white;
    padding: 4rem 0;
    text-align: center;
}

.why-me-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--primary-light);
    border-radius: 12px;
}

.why-me-content h2 {
    color: var(--primary);
    margin-bottom: 2rem;
}

.why-me-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 4rem 0;
}

.highlight-box p {
    font-size: 1.25rem;
    color: var(--primary);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .method-card {
        max-width: 100%;
    }
    
    .method-icon {
        height: 120px;
    }
    
    .method-content {
        padding: 1.5rem;
    }
}

.why-me {
    background: linear-gradient(135deg, var(--primary-light) 0%, white 60%);
    padding: 6rem 0;
}

.why-me-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-me-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-me-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(227, 30, 104, 0.15);
}

.why-me-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.why-me-card:hover .why-me-icon {
    background: var(--primary);
}

.why-me-icon i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.why-me-card:hover .why-me-icon i {
    color: white;
}

.why-me-title {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-me-text {
    color: var(--text-light);
    line-height: 1.6;
}

.why-me-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.why-me-content h2 {
    color: var(--text);
    margin-bottom: 1.5rem;
}

.why-me-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}