	 :root {
            --primary-color: #00533b;
            --secondary-color: #159895;
            --text-color: #2C3333;
            --background-color: #F8F9FA;
        }


        

        .section {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
            margin-bottom: 30px;
            overflow: hidden;
        }

        .section-header {
            background-color: var(--primary-color);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .section-header h2 {
            font-size: 24px;
            font-weight: 600;
        }

        .section-content {
            padding: 30px;
            display: flex;
            align-items: center;
        }

        .section-content-text {
            flex: 2;
            padding-right: 30px;
        }

        .section-content-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .section-content-image img {
            max-width: 100%;
            max-height: 300px;
            border-radius: 12px;
            object-fit: cover;
        }

        .section-content-stats {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .stat-item {
            background-color: var(--background-color);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: scale(1.05);
        }

        .stat-number {
            color: var(--primary-color);
            font-size: 28px;
            font-weight: 700;
        }

        .stat-label {
            color: var(--secondary-color);
            font-size: 14px;
        }

        .core-values {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-top: 20px;
        }

        .core-value-item {
            flex: 1;
            background-color: var(--background-color);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
        }
        .about-us {
            margin-top: 80px;
        }
        @media (max-width: 768px) {
            .section-content {
                flex-direction: column;
            }

            .section-content-text,
            .section-content-stats,
            .section-content-image {
                width: 100%;
                padding: 0;
                margin-bottom: 20px;
            }

            .core-values {
                flex-direction: column;
            }
        }
