.about {
    .header-section {
        padding: 40px 20px 20px;

        @media screen and (min-width: 1000px) {
            padding: 40px 0 20px;
        }

        .page-headline {
            margin: 0;
        }
    }

    .wrapper {
        padding: 20px;

        &.section-intro {
            max-width: 800px;
            margin: 0 auto 40px auto;

            .lead-text {
                font-size: 1.2rem;
                line-height: 1.6;
                color: var(--color-font-light);
            }
        }

        &.section-philosophy {
            display: flex;
            flex-direction: column;
            gap: 40px;

            @media screen and (min-width: 1000px) {
                flex-direction: row;
                align-items: stretch;
                gap: 60px;
            }

            .left {
                width: 100%;
                @media screen and (min-width: 1000px) {
                    width: 55%;
                }

                .card-image-wrapper {
                    margin-bottom: 2rem;

                    .card-image {
                        width: 100%;
                        height: auto;
                        border-radius: var(--border-radius-large, 12px);
                        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
                    }
                }
            }

            .right {
                width: calc(100% - 80px);
                @media screen and (min-width: 1000px) {
                    width: 45%;
                }
            }
        }
    }

    .text-card p {
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .highlight-box {
        background: var(--color-grey-surface);
        padding: 40px;
        border-radius: var(--border-radius-large, 12px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);

        .icon-large {
            font-size: 2.5rem;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        p {
            font-size: 1.1rem;
            line-height: 1.7;
            font-style: italic;
            margin: 0;
        }
    }

    .section-motivation {
        max-width: 800px;
        margin: 0 auto 60px auto;

        .motivation-card {
            background: linear-gradient(135deg, var(--color-grey-surface) 0%, transparent 100%);
            border: 1px solid rgba(0, 0, 0, 0.05);
            padding: 40px;
            border-radius: var(--border-radius-large, 12px);

            .motivation-quote {
                font-size: 1.5rem;
                margin-top: 0;
                margin-bottom: 15px;
            }

            p {
                margin: 0;
                font-size: 1.1rem;
                font-weight: 500;
            }
        }
    }

    .text-center {
        text-align: center;
    }

}
