/* Basis-Styles für Unterseiten */
.about-hero {
    min-height: 60vh;
    background-position: center;
    background-size: cover;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* Verbesserte Sektions-Trennung */
.about-section {
	background: white;
    padding: 5rem 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Alternierende Hintergründe */
.about-section:nth-child(even) {
    background: var(--bg-light);
}

/* Einführungssektion */
.about-intro {
    text-align: center;
    padding-bottom: 3rem;
}

/* Profilbild-Styling */
.about-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin: 2rem auto;
    display: block;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 24px rgba(227, 30, 104, 0.15);
}

/* Werte-Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Standard: 4 Spalten */
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    padding: 0 1.5rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    height: 100%; /* Gleiche Höhe für alle Items */
    display: flex;
    flex-direction: column;
}

.value-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    height: 60px;
    width: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(227, 30, 104, 0.15);
}

/* Zitate-Styling */
.quote {
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--primary);
    text-align: center;
    margin: 3rem auto;
    padding: 3rem;
    background: var(--primary-light);
    border-radius: 12px;
    position: relative;
    max-width: 800px;
}

.quote::before,
.quote::after {
    content: '"';
    font-size: 4rem;
    position: absolute;
    color: var(--primary);
    opacity: 0.2;
}

.quote::before {
    top: 1rem;
    left: 1rem;
}

.quote::after {
    bottom: 0;
    right: 1rem;
}

/* Textformatierung */
.about-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.section-title {
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

/* Call to Action */
.cta-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-light), white);
}

/* Responsive Anpassungen */
@media screen and (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Spalten auf Tablets */
        gap: 1.5rem;
        padding: 0 1rem;
    }
}


@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-content {
        padding: 0 1rem;
    }

    .quote {
        padding: 2rem 1rem;
        font-size: 1.1rem;
        margin: 2rem 1rem;
    }

    .about-image {
        width: 250px;
        height: 250px;
    }

    .values-grid {
        grid-template-columns: 1fr; /* 1 Spalte auf Mobile */
        gap: 1rem;
    }

    .value-item {
        padding: 1.5rem;
    }

    .value-icon {
        height: 50px;
        width: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .about-image {
        width: 200px;
        height: 200px;
    }

    .quote {
        font-size: 1rem;
    }
}