.green-it {

    .header-section {

        .green-it-headline-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;

            @media screen and (min-width: 1000px) {
                justify-content: flex-start;
            }

            .page-headline {
                margin-bottom: 0;
            }

            .headline-icon {
                width: 30px;
                height: 30px;

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

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

            @media screen and (min-width: 1000px) {
                text-align: left;
            }
        }
    }

    .wrapper {
        margin-bottom: 60px;

        .card-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;

            @media screen and (min-width: 1000px) {
                grid-template-columns: repeat(3, 1fr);
                align-items: stretch;
            }

            .feature-card {
                background: var(--color-grey-surface);
                padding: 30px;
                border-radius: var(--border-radius-large, 12px);
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
                transition: transform 0.2s ease, box-shadow 0.2s ease;
                display: flex;
                flex-direction: column;

                &:hover {
                    @media screen and (min-width: 1000px) {
                        transform: translateY(-5px);
                        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
                    }
                }

                .card-header {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    margin-bottom: 1.5rem;

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

                    h3 {
                        margin: 0;
                        font-size: 1.3rem;
                    }
                }

                p {
                    margin: 0;
                    line-height: 1.6;
                }

                .feature-list {
                    list-style: none;
                    padding: 0;
                    margin: 0;

                    li {
                        display: flex;
                        align-items: flex-start;
                        margin-bottom: 0.75rem;
                        line-height: 1.5;

                        i {
                            margin-top: 4px;
                            margin-right: 12px;
                        }
                    }
                }
            }
        }
    }
}
