
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        .core-values-section {
            padding-bottom: 4rem;
            background-color: white;
        }

        .hero-image-container {
            position: relative;
            width: 100%;
            height: 50vh;
            overflow: hidden;
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .container {
            max-width: 1280px;
            margin: 5rem auto 0;
            padding: 0 1rem;
        }

        .grid-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: start;
        }

        .image-column {
            order: 2;
        }

        .image-wrapper {
            position: relative;
        }

        .values-image {
            width: 100%;
            height: auto;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .content-column {
            order: 1;
        }

        .content-space {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .heading-section h2 {
            font-size: 1.875rem;
            font-weight: bold;
            color: #111827;
            margin-bottom: 1rem;
        }

        .heading-section h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 1.5rem;
        }

        .intro-text {
            font-size: 1.125rem;
            color: #374151;
            line-height: 1.75;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin: 2rem 0;
        }

        .value-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 1rem;
            background-color: #f9fafb;
            border-radius: 0.5rem;
        }

        .icon-wrapper {
            background-color: #111827;
            border-radius: 9999px;
            padding: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .icon {
            width: 1.5rem;
            height: 1.5rem;
            color: white;
        }

        .value-text {
            font-size: 0.875rem;
            font-weight: 600;
            color: #111827;
        }

        .description-text {
            font-size: 1.125rem;
            color: #374151;
            line-height: 1.75;
        }

        .why-section {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .why-heading {
            font-size: 1.5rem;
            font-weight: bold;
            color: #111827;
        }

        .why-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .why-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .check-icon-wrapper {
            flex-shrink: 0;
            margin-top: 0.25rem;
        }

        .check-icon {
            width: 1.25rem;
            height: 1.25rem;
            color: #16a34a;
        }

        .why-text {
            color: #374151;
            line-height: 1.75;
            font-weight: 500;
        }

        /* Tablet and above */
        @media (min-width: 768px) {
            .hero-image-container {
                height: 60vh;
            }

            .container {
                padding: 0 1.5rem;
            }

            .heading-section h2 {
                font-size: 2.25rem;
            }

            .heading-section h3 {
                font-size: 1.875rem;
            }

            .values-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .why-heading {
                font-size: 1.875rem;
            }
        }

        /* Desktop */
        @media (min-width: 1024px) {
            .hero-image-container {
                height: 100vh;
            }

            .container {
                padding: 0 2rem;
            }

            .grid-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 4rem;
            }

            .image-column {
                order: 1;
            }

            .content-column {
                order: 2;
            }
        }
